1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Convert static variables into constants in the FTS module. (CVS 3385)

FossilOrigin-Name: 098cbafcd6dcf57142b0417e796d27ffddcc0920
This commit is contained in:
drh
2006-09-02 14:16:59 +00:00
parent aa29c13579
commit 7c2d87cd71
7 changed files with 26 additions and 31 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
** $Id: tclsqlite.c,v 1.172 2006/08/31 15:07:15 drh Exp $
** $Id: tclsqlite.c,v 1.173 2006/09/02 14:17:00 drh Exp $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */
@@ -2073,13 +2073,6 @@ static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){
zArg = Tcl_GetStringFromObj(objv[1], 0);
Tcl_CreateObjCommand(interp, zArg, DbObjCmd, (char*)p, DbDeleteCmd);
#ifdef SQLITE_ENABLE_FTS1
{
extern int sqlite3Fts1Init(sqlite3*);
sqlite3Fts1Init(p->db);
}
#endif
/* If compiled with SQLITE_TEST turned on, then register the "md5sum"
** SQL function.
*/