]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Remove a comma at the end of an enum definition. Some compilers could not
authordrh <drh@noemail.net>
Fri, 19 Dec 2003 12:32:45 +0000 (12:32 +0000)
committerdrh <drh@noemail.net>
Fri, 19 Dec 2003 12:32:45 +0000 (12:32 +0000)
deal with it. (CVS 1140)

FossilOrigin-Name: b1890a5b9c1222086b3aae92e49eb090a17a6492

manifest
manifest.uuid
src/tclsqlite.c

index 873bae8c5e51ae63be85f77486ab435f83bb20c1..e959ae35739eefc0f647278bfa9acaa42679d143 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Makefile\supdates\sfor\sthe\snew\s"test4.c"\smodule.\s\sAlso\sdisable\slarge\sfile\ntests\sfor\sarchic\sTCL\sversions.\s(CVS\s1139)
-D 2003-12-19T12:31:20
+C Remove\sa\scomma\sat\sthe\send\sof\san\senum\sdefinition.\s\sSome\scompilers\scould\snot\ndeal\swith\sit.\s(CVS\s1140)
+D 2003-12-19T12:32:46
 F Makefile.in 3c04579d45d26fc0432dcf0e5414ad065722c3a1
 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -52,7 +52,7 @@ F src/shell.tcl 27ecbd63dd88396ad16d81ab44f73e6c0ea9d20e
 F src/sqlite.h.in e6cfff01fafc8a82ce82cd8c932af421dc9adb54
 F src/sqliteInt.h f8549cf426920e43efb105a08484768cdb73c808
 F src/table.c d845cb101b5afc1f7fea083c99e3d2fa7998d895
-F src/tclsqlite.c 7425d6980a1d96d6d3af911f935ee699c2390db7
+F src/tclsqlite.c dcd18d1f0d51ac4863d1f9059f614f903bc1fffe
 F src/test1.c f9d5816610f7ec4168ab7b098d5207a5708712b6
 F src/test2.c 5014337d8576b731cce5b5a14bec4f0daf432700
 F src/test3.c 30985ebdfaf3ee1462a9b0652d3efbdc8d9798f5
@@ -179,7 +179,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3
 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
 F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
-P 7dddbeb586504de30c64a1e61614da447f18c8ba
-R 8ca7ffb65f56f2637926388c44e96204
+P 55e2488912871381959326ab7fa89123ab30d659
+R 94fd29229d6e048836e2ae3bf9bf36fd
 U drh
-Z c56a7f39662db48c06db8a9cdcf08cc5
+Z c3d8ae6bfeac7ec0d73f8e5c33a77b76
index 7b96f7e00bed53e007652b243fcb4b960c598bba..eec1a75d6ed50112577dd026294cb43214239c65 100644 (file)
@@ -1 +1 @@
-55e2488912871381959326ab7fa89123ab30d659
\ No newline at end of file
+b1890a5b9c1222086b3aae92e49eb090a17a6492
\ No newline at end of file
index cd6a1ba13119bf527bf7c8c9b41070860f95ae20..c2f4cfd49d60e8dd1e352b38ad8d7999a66a7300 100644 (file)
@@ -11,7 +11,7 @@
 *************************************************************************
 ** A TCL Interface to SQLite
 **
-** $Id: tclsqlite.c,v 1.52 2003/12/19 02:52:09 drh Exp $
+** $Id: tclsqlite.c,v 1.53 2003/12/19 12:32:46 drh Exp $
 */
 #ifndef NO_TCL     /* Omit this whole file if TCL is unavailable */
 
@@ -480,7 +480,7 @@ static int DbObjCmd(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
     DB_CLOSE,             DB_COMPLETE,         DB_ERRORCODE,
     DB_EVAL,              DB_FUNCTION,         DB_LAST_INSERT_ROWID,
     DB_ONECOLUMN,         DB_TIMEOUT,          DB_TRACE,            
-    DB_PROGRESS,
+    DB_PROGRESS
   };
 
   if( objc<2 ){