aboutsummaryrefslogtreecommitdiff
path: root/src/shell.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-05-03 18:29:22 +0000
committerdrh <drh@noemail.net>2013-05-03 18:29:22 +0000
commitec7ecb8c9a42c68e6152f7e72b2badcbb8671c55 (patch)
treee0ff1a0cdbb5bafdea569c861d8913ef63d962fb /src/shell.c
parent16fb176814bd2b8fe46f7ed0e50a0b3d33db89a0 (diff)
parentbce5beee18befa9b3ee47938e9e4c3e2e572cf3c (diff)
downloadsqlite-ec7ecb8c9a42c68e6152f7e72b2badcbb8671c55.tar.gz
sqlite-ec7ecb8c9a42c68e6152f7e72b2badcbb8671c55.zip
Merge all recent trunk changes into the sessions branch.
FossilOrigin-Name: 3879ab1b532828fcc12a50a95b6730faebcb69e9
Diffstat (limited to 'src/shell.c')
-rw-r--r--src/shell.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/shell.c b/src/shell.c
index 13a2f70cb..09c3b810c 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -1481,18 +1481,6 @@ static void open_db(struct callback_data *p){
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sqlite3_enable_load_extension(p->db, 1);
#endif
-#ifdef SQLITE_ENABLE_REGEXP
- {
- extern int sqlite3_add_regexp_func(sqlite3*);
- sqlite3_add_regexp_func(db);
- }
-#endif
-#ifdef SQLITE_ENABLE_SPELLFIX
- {
- extern int sqlite3_spellfix1_register(sqlite3*);
- sqlite3_spellfix1_register(db);
- }
-#endif
}
}