From: mistachkin Date: Fri, 7 Feb 2014 03:28:02 +0000 (+0000) Subject: More comment updates. No changes to code. X-Git-Tag: version-3.8.4~100 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21a919f63022549c8f76e2892573aac9178d1528;p=thirdparty%2Fsqlite.git More comment updates. No changes to code. FossilOrigin-Name: be24fbc22106e508975e316abe0471edd3833291 --- diff --git a/manifest b/manifest index 5ce0f954c3..5537506c47 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Update\scomments\sin\svdbe.c.\s\sNo\schanges\sto\scode. -D 2014-02-07T02:29:45.685 +C More\scomment\supdates.\s\sNo\schanges\sto\scode. +D 2014-02-07T03:28:02.783 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -280,7 +280,7 @@ F src/update.c a7df6fffce6bfedc578fda6136dd33e34a63f8ee F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269 F src/util.c 15ac2627f548f5481d0d7e6c4eb67be673027695 F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 -F src/vdbe.c 962cb7aad1a89ecc2b0cb879d7021c591ddc9a31 +F src/vdbe.c 575189caf33bc3f2b9557f420e9b815afcd5ace8 F src/vdbe.h e6c4c610fcabad4fa80ebb1efc6822a9367e2b26 F src/vdbeInt.h 42db251e9f863401ff847b90d5fe1614c89a6a56 F src/vdbeapi.c ce4e68ea4842cc6081046f533d088dcf01d247ad @@ -1152,7 +1152,7 @@ F tool/vdbe-compress.tcl 0cf56e9263a152b84da86e75a5c0cdcdb7a47891 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff -P 2f3376ebf13df44e6acf27cb1f07172cd8b34033 -R aa84db7692e8a0ce37f76fa70188d582 -U drh -Z 06749a17929b89f5bdf09dbcde9d47c5 +P 1122b410de68a3c79b4c719a3a4cc4dc6a5bb39d +R ba81bea358565b1489c187d643f4773f +U mistachkin +Z fafd555fb9fada47058f4a33fbcaaf41 diff --git a/manifest.uuid b/manifest.uuid index 214aabe77c..affff2d9c4 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -1122b410de68a3c79b4c719a3a4cc4dc6a5bb39d \ No newline at end of file +be24fbc22106e508975e316abe0471edd3833291 \ No newline at end of file diff --git a/src/vdbe.c b/src/vdbe.c index b97d6135ad..5816c4a797 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -4492,13 +4492,13 @@ next_tail: ** P3 is a flag that provides a hint to the b-tree layer that this ** insert is likely to be an append. ** -** If P5 contains bet OPFLAG_NCHANGE, then the change counter is -** incremented by this instruction. If OPFLAG_NCHANGE is clear, then -** the change counter is unchanged. +** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is +** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear, +** then the change counter is unchanged. ** -** If P5 contains OPFLAG_USESEEKRESULT then the cursor must have just -** done a seek to the spot where the new entry is to be inserted. This -** flag avoids doing an extra seek. +** If P5 has the OPFLAG_USESEEKRESULT bit set, then the cursor must have +** just done a seek to the spot where the new entry is to be inserted. +** This flag avoids doing an extra seek. ** ** This instruction only works for indices. The equivalent instruction ** for tables is OP_Insert.