diff options
author | drh <drh@noemail.net> | 2006-08-31 15:07:14 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-08-31 15:07:14 +0000 |
commit | 5db455e7b5512613a4bafd39acfb20cfff727708 (patch) | |
tree | 4033f206deca848fac90deec18c5c07e9fefd51b /src/tclsqlite.c | |
parent | 2b85d5f46e106fac615837bbd0762f66cc02a1b0 (diff) | |
download | sqlite-5db455e7b5512613a4bafd39acfb20cfff727708.tar.gz sqlite-5db455e7b5512613a4bafd39acfb20cfff727708.zip |
Refactor the FTS1 module so that its name is "fts1" instead of "fulltext",
so that all symbols with external linkage begin with "sqlite3Fts1", and
so that all filenames begin with "fts1". (CVS 3377)
FossilOrigin-Name: e1891f0dc58e5498a8845d8b9b5b092d7f9c7003
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 0de5a6fd3..7a88e9634 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -11,7 +11,7 @@ ************************************************************************* ** A TCL Interface to SQLite ** -** $Id: tclsqlite.c,v 1.171 2006/08/29 12:04:19 drh Exp $ +** $Id: tclsqlite.c,v 1.172 2006/08/31 15:07:15 drh Exp $ */ #ifndef NO_TCL /* Omit this whole file if TCL is unavailable */ @@ -2075,8 +2075,8 @@ static int DbMain(void *cd, Tcl_Interp *interp, int objc,Tcl_Obj *const*objv){ #ifdef SQLITE_ENABLE_FTS1 { - extern int fulltext_init(sqlite3*); - fulltext_init(p->db); + extern int sqlite3Fts1Init(sqlite3*); + sqlite3Fts1Init(p->db); } #endif |