From: drh <> Date: Sat, 21 Feb 2026 21:19:41 +0000 (+0000) Subject: Fix typos and include wording in the documentation for X-Git-Tag: version-3.52.0~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60f132bf1288549ef1e7043f4a88fe6e199f0cf4;p=thirdparty%2Fsqlite.git Fix typos and include wording in the documentation for SQLITE_DBCONFIG_FP_DIGITS. FossilOrigin-Name: c30cee1224904eb2092daa0ad9494aec7c7a8c6c1661f5b91b62c3ef0c5ea95b --- diff --git a/manifest b/manifest index f05a8ddd52..20186b546e 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\sa\sharmless\swarning\sin\sthe\sdecimal\sextension. -D 2026-02-21T20:20:06.720 +C Fix\stypos\sand\sinclude\swording\sin\sthe\sdocumentation\sfor\nSQLITE_DBCONFIG_FP_DIGITS. +D 2026-02-21T21:19:41.549 F .fossil-settings/binary-glob 61195414528fb3ea9693577e1980230d78a1f8b0a54c78cf1b9b24d0a409ed6a x F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea @@ -740,7 +740,7 @@ F src/resolve.c 928ff887f2a7c64275182060d94d06fdddbe32226c569781cf7e7edc6f58d7fd F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97 F src/select.c 615d62112f5c14fb24facf9391492b42403875bfd4288db6ba10d7e6fbc22c4c F src/shell.c.in 3e87584890a4e9797865e4771689d8d1aca3b0f824f973192784716ecfa320a2 -F src/sqlite.h.in b8a0b4dd92b1e52caa9676e39971bdaaf44eef30c4b148c9c2fa99e88ed6cf3a +F src/sqlite.h.in c7582608c8270428b288a529f4a4170298a19548266b55edaa2e70ce8d607f0e F src/sqlite3.rc 015537e6ac1eec6c7050e17b616c2ffe6f70fca241835a84a4f0d5937383c479 F src/sqlite3ext.h 1b7a0ee438bb5c2896d0609c537e917d8057b3340f6ad004d2de44f03e3d3cca F src/sqliteInt.h ffa3071dc3b9172acfe1a4edd8bc699928b0d5e02f0b8b9067676aa8e5f8f787 @@ -2195,8 +2195,8 @@ F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee F tool/warnings.sh d924598cf2f55a4ecbc2aeb055c10bd5f48114793e7ba25f9585435da29e7e98 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/winmain.c 00c8fb88e365c9017db14c73d3c78af62194d9644feaf60e220ab0f411f3604c -P 78c12b4f6ae869c3ea5e368c97b45991442bdd2d3a60935f1e6fc02a8e01cd41 -R 49ff7c0b58fdceea8cbf4269b84e9dc8 +P f16c7c4000f2b992f7245dcaf669f13ed464579f8894f3c16842eebf41285c70 +R 944ea7c224f9333bdc2c56f7b2ed487a U drh -Z 066b8dfa63132b7df4fb39636455127f +Z ef2f611c8a724472ddbfbfc7d613ba7b # Remove this line to create a well-formed Fossil manifest. diff --git a/manifest.uuid b/manifest.uuid index 89cbec7e9a..7193b3ed74 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f16c7c4000f2b992f7245dcaf669f13ed464579f8894f3c16842eebf41285c70 +c30cee1224904eb2092daa0ad9494aec7c7a8c6c1661f5b91b62c3ef0c5ea95b diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 182f6871c8..930c3a1814 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -2650,15 +2650,16 @@ struct sqlite3_mem_methods { ** ** [[SQLITE_DBCONFIG_FP_DIGITS]] **
+**
** This option takes two arguments which are an integer and a pointer -** to an integer. The first argument is a small integer, between 3 and 20, or -** zero. The FP_DIGITS setting is changed to the small integer, or left -** altered if the first argument is out of range. The second argument is a -** pointer to an integer. If the pointer is not NULL, then the value of +** to an integer. The first argument is a small integer, between 3 and 23, or +** zero. The FP_DIGITS setting is changed to that small integer, or left +** altered if the first argument is zero or out of range. The second argument +** is a pointer to an integer. If the pointer is not NULL, then the value of ** the FP_DIGITS setting, after possibly being modified by the first ** arguments, is written into the integer to which the second argument points. **
While most SQLITE_DBCONFIG options use the argument format -** described in the previous paragraph, the [SQLITE_DBCONFIG_MAINDBNAME] -** and [SQLITE_DBCONFIG_LOOKASIDE] options are different. See the -** documentation of those exceptional options for details. +** described in the previous paragraph, the [SQLITE_DBCONFIG_MAINDBNAME], +** [SQLITE_DBCONFIG_LOOKASIDE], and [SQLITE_DBCONFIG_FP_DIGITS] options +** are different. See the documentation of those exceptional options for +** details. */ #define SQLITE_DBCONFIG_MAINDBNAME 1000 /* const char* */ #define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */