From: drh Date: Wed, 17 Apr 2013 14:04:52 +0000 (+0000) Subject: Improvements to some of the comments that are used to render documentation X-Git-Tag: version-3.7.17~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4670f6d5f60e8172d36d663b19353bfef06f0760;p=thirdparty%2Fsqlite.git Improvements to some of the comments that are used to render documentation concerning loadable extensions. No changes to code. FossilOrigin-Name: 76f4e31245fd1676a4520a2f7488bca6eb981e4a --- diff --git a/manifest b/manifest index 74612d5403..7d65c5f899 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Update\sthe\scommand-line\sshell\sto\sgive\san\sexit\scode\sof\s0\swhen\sthe\s".quit"\ncommand\sis\srun\sfrom\sthe\scommand-line. -D 2013-04-17T12:19:48.061 +C Improvements\sto\ssome\sof\sthe\scomments\sthat\sare\sused\sto\srender\sdocumentation\nconcerning\sloadable\sextensions.\s\sNo\schanges\sto\scode. +D 2013-04-17T14:04:52.335 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 3dd3fcb87b70c78d99b2c8a03e44ec86d6ca9ce2 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -182,7 +182,7 @@ F src/resolve.c 10a1b332e3eb36e5d561085e18c58a8578cd7d73 F src/rowset.c 64655f1a627c9c212d9ab497899e7424a34222e0 F src/select.c 01540bcd3df3c8f1187158e77986028b1c667258 F src/shell.c a303eb4529ee78a68ee54e8ba6941f76ee5601d2 -F src/sqlite.h.in d897fd15b9c74d4e78e4c42319484ceb1649c5d7 +F src/sqlite.h.in 31442751f3a63a538777188b6dfe70aebed338ac F src/sqlite3.rc fea433eb0a59f4c9393c8e6d76a6e2596b1fe0c0 F src/sqlite3ext.h 7183ab832e23db0f934494f16928da127a571d75 F src/sqliteInt.h 2a83cfec9963372b636b0cabd4b200c1f1074a99 @@ -1051,7 +1051,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac -P 109d6767d2626741db1d15ed55e699ac3184a536 -R 11f575757c220b40832c775a36cd7f16 +P 467e218120d63d0f34c447f7324bac1364ac0eac +R 8ddf4f94c02f24d9b9c0c2b780ed2098 U drh -Z 387afe95e75dc05ba67ce426c2ff6b48 +Z d6edc377ec44c72133adc32403868eee diff --git a/manifest.uuid b/manifest.uuid index fd6a44aeb7..b12409c708 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -467e218120d63d0f34c447f7324bac1364ac0eac \ No newline at end of file +76f4e31245fd1676a4520a2f7488bca6eb981e4a \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 69f79a0377..f4f02d3eac 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -4218,7 +4218,7 @@ void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*)); ** the content before returning. ** ** The typedef is necessary to work around problems in certain -** C++ compilers. See ticket #2191. +** C++ compilers. */ typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) @@ -5017,7 +5017,7 @@ int sqlite3_table_column_metadata( ** ^This interface loads an SQLite extension library from the named file. ** ** ^The sqlite3_load_extension() interface attempts to load an -** SQLite extension library contained in the file zFile. +** [SQLite extension] library contained in the file zFile. ** ** ^The entry point is zProc. ** ^zProc may be 0, in which case the name of the entry point @@ -5047,11 +5047,11 @@ int sqlite3_load_extension( ** CAPI3REF: Enable Or Disable Extension Loading ** ** ^So as not to open security holes in older applications that are -** unprepared to deal with extension loading, and as a means of disabling -** extension loading while evaluating user-entered SQL, the following API +** unprepared to deal with [extension loading], and as a means of disabling +** [extension loading] while evaluating user-entered SQL, the following API ** is provided to turn the [sqlite3_load_extension()] mechanism on and off. ** -** ^Extension loading is off by default. See ticket #1863. +** ^Extension loading is off by default. ** ^Call the sqlite3_enable_load_extension() routine with onoff==1 ** to turn extension loading on and call it with onoff==0 to turn ** it back off again. @@ -5063,7 +5063,7 @@ int sqlite3_enable_load_extension(sqlite3 *db, int onoff); ** ** ^This interface causes the xEntryPoint() function to be invoked for ** each new [database connection] that is created. The idea here is that -** xEntryPoint() is the entry point for a statically linked SQLite extension +** xEntryPoint() is the entry point for a statically linked [SQLite extension] ** that is to be automatically loaded into all new database connections. ** ** ^(Even though the function prototype shows that xEntryPoint() takes