diff options
author | drh <drh@noemail.net> | 2000-10-19 14:59:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2000-10-19 14:59:27 +0000 |
commit | 3cebbde37ec1f6105b9a4ba26a37a73af881c032 (patch) | |
tree | a2cb96fdf8134844105c5fdde53d7eb74fe3625e /src | |
parent | efa4e1724014344eaf3a7b77a63bbf0455e560ac (diff) | |
download | sqlite-3cebbde37ec1f6105b9a4ba26a37a73af881c032.tar.gz sqlite-3cebbde37ec1f6105b9a4ba26a37a73af881c032.zip |
remove the Et_AppInit() function from tclsqlite (CVS 161)
FossilOrigin-Name: 8eee153078b27b56c6da7d0b7a3df25985ed051f
Diffstat (limited to 'src')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 25f408650..353931ae6 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -23,7 +23,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.11 2000/10/11 19:28:52 drh Exp $ +** $Id: tclsqlite.c,v 1.12 2000/10/19 14:59:27 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -380,6 +380,7 @@ int Sqlite_SafeInit(Tcl_Interp *interp){ return TCL_OK; } +#if 0 /* ** If compiled using mktclapp, this routine runs to initialize ** everything. @@ -387,6 +388,7 @@ int Sqlite_SafeInit(Tcl_Interp *interp){ int Et_AppInit(Tcl_Interp *interp){ return Sqlite_Init(interp); } +#endif /* ** If the macro TCLSH is defined and is one, then put in code for the |