From: drh Date: Wed, 8 Apr 2009 11:49:42 +0000 (+0000) Subject: Add a comment to printf.c - no changes to code. (CVS 6468) X-Git-Tag: version-3.6.15~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e3ff5d84ec20ce70a8ff6bfdc013987ed06252e;p=thirdparty%2Fsqlite.git Add a comment to printf.c - no changes to code. (CVS 6468) FossilOrigin-Name: ee5a4a0e595a7b916db7d55d30ddfda0a8d40d90 --- diff --git a/manifest b/manifest index fb51e4ef2c..9dc1a90a61 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sthe\ssqlite3_unlock_notify()\sinterface\sso\sthat\swhen\sthe\scallback\sis\sNULL\nit\ssimply\scancels\sany\soutstanding\scallbacks.\s(CVS\s6467) -D 2009-04-07T22:06:57 +C Add\sa\scomment\sto\sprintf.c\s-\sno\schanges\sto\scode.\s(CVS\s6468) +D 2009-04-08T11:49:42 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in 583e87706abc3026960ed759aff6371faf84c211 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -151,7 +151,7 @@ F src/pcache.h 9b927ccc5a538e31b4c3bc7eec4f976db42a1324 F src/pcache1.c f587565f4ba0fd1772067eaa96814dce761b7a4c F src/pragma.c c26c16c49a80d03c8597f0e6c7daba53f283428f F src/prepare.c 0ad1ba3290e0626aa4e7589ed6ab6af2572875b0 -F src/printf.c 9866a9a9c4a90f6d4147407f373df3fd5d5f9b6f +F src/printf.c f5e10308af5d602644e38ca2fc6821ffe014f171 F src/random.c 676b9d7ac820fe81e6fb2394ac8c10cff7f38628 F src/resolve.c 094e44450371fb27869eb8bf679aacbe51fdc56d F src/rowset.c badb9f36b3a2ced9ee9551f4ce730f5fab442791 @@ -715,7 +715,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P 22999d31418aa9ecb17ab5d135b206b967889614 -R 8662e3a26c19cc89676dfbf43f445945 +P 9ccfcb760745df28b04e746355b1b6dec49a93de +R 37fa3e94f746b0927c8dd6dd1a9acda5 U drh -Z 7764f7e6b16bc4d3ac70136f1d1dcce8 +Z 91ff06ee50236ed490b9e338af17d2f4 diff --git a/manifest.uuid b/manifest.uuid index 456cf47b70..4f5c7d964c 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9ccfcb760745df28b04e746355b1b6dec49a93de \ No newline at end of file +ee5a4a0e595a7b916db7d55d30ddfda0a8d40d90 \ No newline at end of file diff --git a/src/printf.c b/src/printf.c index 58e575be81..a07476906c 100644 --- a/src/printf.c +++ b/src/printf.c @@ -5,7 +5,7 @@ ** an historical reference. Most of the "enhancements" have been backed ** out so that the functionality is now the same as standard printf(). ** -** $Id: printf.c,v 1.99 2008/12/10 19:26:24 drh Exp $ +** $Id: printf.c,v 1.100 2009/04/08 11:49:42 drh Exp $ ** ************************************************************************** ** @@ -133,6 +133,9 @@ static const et_info fmtinfo[] = { { 'n', 0, 0, etSIZE, 0, 0 }, { '%', 0, 0, etPERCENT, 0, 0 }, { 'p', 16, 0, etPOINTER, 0, 1 }, + +/* All the rest have the FLAG_INTERN bit set and are thus for internal +** use only */ { 'T', 0, 2, etTOKEN, 0, 0 }, { 'S', 0, 2, etSRCLIST, 0, 0 }, { 'r', 10, 3, etORDINAL, 0, 0 },