]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
More pedantic changes to comments in VDBE. No changes to code. Ticket #1596. (CVS...
authordrh <drh@noemail.net>
Tue, 10 Jan 2006 19:45:49 +0000 (19:45 +0000)
committerdrh <drh@noemail.net>
Tue, 10 Jan 2006 19:45:49 +0000 (19:45 +0000)
FossilOrigin-Name: 1cf6855430352ffbf921a977186345d7272fe272

manifest
manifest.uuid
src/vdbe.c

index f0f05baed6f18e82cefe87fcccb7ee9eab777877..5f2a65aef96f7209d82ccd92383d2e95b66e121b 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sopcode\sname\sin\scomments.\s\sNo\schanges\sto\scode.\s(CVS\s2907)
-D 2006-01-10T18:44:08
+C More\spedantic\schanges\sto\scomments\sin\sVDBE.\s\sNo\schanges\sto\scode.\s\sTicket\s#1596.\s(CVS\s2908)
+D 2006-01-10T19:45:49
 F Makefile.in ab3ffd8d469cef4477257169b82810030a6bb967
 F Makefile.linux-gcc aee18d8a05546dcf1888bd4547e442008a49a092
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -87,7 +87,7 @@ F src/update.c cd8ad5bb1a29f2056347481308fca4a59f2f4764
 F src/utf.c b7bffac4260177ae7f83c01d025fe0f5ed70ce71
 F src/util.c 5d5792d4a4dda20d70fdfb973ed8a5ed71fea98c
 F src/vacuum.c f5a068096b22fad438bf1f1cf69ccb7f9e8cc7fb
-F src/vdbe.c 8500eee6b75f4a63e8828bc32b1bdb959ecf9e0f
+F src/vdbe.c aa4360d28c4476e435c84e92ad3fbd65a8944156
 F src/vdbe.h 8729a4ee16ff9aeab2af9667df3cf300ff978e13
 F src/vdbeInt.h 5451cf71f229e366ac543607c0a17f36e5737ea9
 F src/vdbeapi.c 6d20e92de62b90ae27aeea3a7b18653734b0b1cb
@@ -340,7 +340,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 16a8172a617d4ff739660ae67d3e381b2dea68e6
-R 94607d68601d1d53040455673ac24923
+P 511ac9db12ad84bb02d84568b75fc65cef661e88
+R dc7dbd20c2b4f7e0aa62e74e583aeae0
 U drh
-Z 09b4ea26864446b9103a8755a4ebe808
+Z 55bfd4e79be2428d625d90a19139bf0e
index bc36677781667b96c7c548c941cb4d2bed062ec5..890cd71f9ad1db22761bd07bb00dc5352be91387 100644 (file)
@@ -1 +1 @@
-511ac9db12ad84bb02d84568b75fc65cef661e88
\ No newline at end of file
+1cf6855430352ffbf921a977186345d7272fe272
\ No newline at end of file
index 9f30970afa0b7b6d75f034efad35ab521711087d..8fefed8301424fe2039826a17c674b3ee0b6ce85 100644 (file)
@@ -43,7 +43,7 @@
 ** in this file for details.  If in doubt, do not deviate from existing
 ** commenting and indentation practices when changing or adding code.
 **
-** $Id: vdbe.c,v 1.521 2006/01/10 18:44:08 drh Exp $
+** $Id: vdbe.c,v 1.522 2006/01/10 19:45:49 drh Exp $
 */
 #include "sqliteInt.h"
 #include "os.h"
@@ -3653,9 +3653,9 @@ case OP_Next: {        /* no-push */
 
 /* Opcode: IdxInsert P1 * *
 **
-** The top of the stack holds a SQL index key made using the
-** MakeIdxRec instruction.  This opcode writes that key into the
-** index P1.  Data for the entry is nil.
+** The top of the stack holds a SQL index key made using either the
+** MakeIdxRec or MakeRecord instructions.  This opcode writes that key
+** into the index P1.  Data for the entry is nil.
 **
 ** This instruction only works for indices.  The equivalent instruction
 ** for tables is OP_Insert.
@@ -3684,7 +3684,8 @@ case OP_IdxInsert: {        /* no-push */
 
 /* Opcode: IdxDelete P1 * *
 **
-** The top of the stack is an index key built using the MakeIdxRec opcode.
+** The top of the stack is an index key built using the either the
+** MakeIdxRec or MakeRecord opcodes.
 ** This opcode removes that entry from the index.
 */
 case OP_IdxDelete: {        /* no-push */