]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment. (CVS 384)
authordrh <drh@noemail.net>
Tue, 19 Feb 2002 22:43:58 +0000 (22:43 +0000)
committerdrh <drh@noemail.net>
Tue, 19 Feb 2002 22:43:58 +0000 (22:43 +0000)
FossilOrigin-Name: 953928537c350e6c9df157553114c6d9d44712d5

manifest
manifest.uuid
src/btree.c

index 9bc80123df4520cb7d09fd569efaa10f01a3faa3..17de285c33c21156d7b6062c28fb3f94dd5c0cab 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C New\sROWIDs\sare\snumbered\ssequentially.\s(CVS\s383)
-D 2002-02-19T22:42:05
+C Fix\sa\scomment.\s(CVS\s384)
+D 2002-02-19T22:43:59
 F Makefile.in 9fa4277413bf1d9cf91365f07d4108d7d87ed2af
 F Makefile.template 3372d45f8853afdb70bd30cc6fb50a3cd9069834
 F README a4c0ba11354ef6ba0776b400d057c59da47a4cc0
@@ -19,7 +19,7 @@ F ltmain.sh e9ed72eb1d690f447c13945eaf69e28af531eda1
 F publish.sh 5b59f4aff037aafa0e4a3b6fa599495dbd73f360
 F sqlite.1 2e2bb0529ef468ade9e4322bd609d0695fb9ded9
 F src/TODO af7f3cab0228e34149cf98e073aa83d45878e7e6
-F src/btree.c 8256ea416850fbd2af0ae50779b1a4b604de13c2
+F src/btree.c 495275fe14f3b718cf2f691dce979d4c0e1f8e5d
 F src/btree.h 8abeabfe6e0b1a990b64fa457592a6482f6674f3
 F src/build.c 088acf87a92b00edda1206ccafac3518660b1b3b
 F src/delete.c f8ad71be53cf18656b6573de65395852fe817f0c
@@ -125,7 +125,7 @@ F www/speed.tcl 83457b2bf6bb430900bd48ca3dd98264d9a916a5
 F www/sqlite.tcl 8b5884354cb615049aed83039f8dfe1552a44279
 F www/tclsqlite.tcl 829b393d1ab187fd7a5e978631b3429318885c49
 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
-P cc5abfe392bdb8c3ed00e0610bc2b41851bfc9d7
-R d110cdfb274a665cf18a7abdadd913ff
+P 1686196a8aea326f616bc8205df99cd84d955ec4
+R 42c062c2ca75817e3567e6aa37103eaa
 U drh
-Z 2f4375a6c2ee111a8d6db399f5e3350c
+Z 4a1d19ca8703d5210ddbf3e99038aa5f
index bf5e71a8c526db56d13d25632024911be20d84a7..54369be776cdb432f8590d4f6c89a8121081a30c 100644 (file)
@@ -1 +1 @@
-1686196a8aea326f616bc8205df99cd84d955ec4
\ No newline at end of file
+953928537c350e6c9df157553114c6d9d44712d5
\ No newline at end of file
index b47d838305431fdfddfccff4088b8eba504b44e6..ddf9edf197864a94803293b1f29e5835d794cdb1 100644 (file)
@@ -9,7 +9,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: btree.c,v 1.54 2002/02/19 15:00:07 drh Exp $
+** $Id: btree.c,v 1.55 2002/02/19 22:43:59 drh Exp $
 **
 ** This file implements a external (disk-based) database using BTrees.
 ** For a detailed discussion of BTrees, refer to
@@ -1308,7 +1308,7 @@ static int moveToLeftmost(BtCursor *pCur){
 
 /* Move the cursor to the first entry in the table.  Return SQLITE_OK
 ** on success.  Set *pRes to 0 if the cursor actually points to something
-** or set *pRes to 1 if the table is empty and there is no first element.
+** or set *pRes to 1 if the table is empty.
 */
 int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
   int rc;
@@ -1327,7 +1327,7 @@ int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
 
 /* Move the cursor to the last entry in the table.  Return SQLITE_OK
 ** on success.  Set *pRes to 0 if the cursor actually points to something
-** or set *pRes to 1 if the table is empty and there is no first element.
+** or set *pRes to 1 if the table is empty.
 */
 int sqliteBtreeLast(BtCursor *pCur, int *pRes){
   int rc;