From: drh Date: Tue, 13 Sep 2005 00:02:16 +0000 (+0000) Subject: Fix a comment typo in the previous check-in. (CVS 2691) X-Git-Tag: version-3.6.10~3468 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b27795c183d81da312613b7822ee7698712797a9;p=thirdparty%2Fsqlite.git Fix a comment typo in the previous check-in. (CVS 2691) FossilOrigin-Name: 49c952807dabd80bfeb46caf55856aaab988226c --- diff --git a/manifest b/manifest index 78af7cca26..f8b94dcd95 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Automatically\sset\sthe\sNDEBUG\spreprocessor\smacro\sunless\sSQLITE_DEBUG\sis\sset.\nIn\sthis\sway,\sassert()\sstatements\sbecome\sopt-in\srather\sthan\sopt-out.\s(CVS\s2690) -D 2005-09-13T00:00:01 +C Fix\sa\scomment\stypo\sin\sthe\sprevious\scheck-in.\s(CVS\s2691) +D 2005-09-13T00:02:17 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -66,7 +66,7 @@ F src/random.c 90adff4e73a3b249eb4f1fc2a6ff9cf78c7233a4 F src/select.c 9ef1dddd436e1ea86a6bf64ae0ed71bf4a0b894f F src/shell.c 3596c1e559b82663057940d19ba533ad421c7dd3 F src/sqlite.h.in 461b2535550cf77aedfd44385da11ef7d63e57a2 -F src/sqliteInt.h a01e12d5eb44bb516621edb81a42d0b81c3299d7 +F src/sqliteInt.h 8f3a33d8428d97eeb58ed8c5b3d06f50709d4cd4 F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9 F src/tclsqlite.c ac94682f9e601dd373912c46414a5a842db2089a F src/test1.c b569b60e35f0e3ea20e5ebfaf6e522a01c08d481 @@ -307,7 +307,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P 37116550d33d8e3bdc15cd9998b9d2b97dec312b -R 4b6ab4c546ad13656b76ccf88bd8477b +P 2ec2bd85741e36e410f05ff34de430ffbcf51eea +R b171a63011a54449dcf8edd901e67fad U drh -Z 79948d57e91de7d6a58f8d5dadc245a4 +Z 882a9bbd917dee19aef70ec8d9b5e775 diff --git a/manifest.uuid b/manifest.uuid index 86b8b574ee..30f5ff1694 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -2ec2bd85741e36e410f05ff34de430ffbcf51eea \ No newline at end of file +49c952807dabd80bfeb46caf55856aaab988226c \ No newline at end of file diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 2c407864d0..9a74345e46 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,14 +11,14 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.415 2005/09/13 00:00:01 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.416 2005/09/13 00:02:17 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ /* ** Many people are failing to set -DNDEBUG=1 when compiling SQLite. -** Setting NDEBUG makes the code smaller and run slower. So the following +** Setting NDEBUG makes the code smaller and run faster. So the following ** lines are added to automatically set NDEBUG unless the -DSQLITE_DEBUG=1 ** option is set. Thus NDEBUG becomes an opt-in rather than an opt-out ** feature.