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

Fix the text of a comment used to generate VDBE opcode documentation so that

it omits symbols that can be mistaken for a hyperlink by the parser.

FossilOrigin-Name: b46d4e8923e6e367412bba7aeac07039bbcbabd1
This commit is contained in:
drh
2014-02-20 19:42:00 +00:00
parent 06280ee582
commit 4d87aaed56
3 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sa\sharmless\sshadowed-variable\swarning. C Fix\sthe\stext\sof\sa\scomment\sused\sto\sgenerate\sVDBE\sopcode\sdocumentation\sso\sthat\nit\somits\ssymbols\sthat\scan\sbe\smistaken\sfor\sa\shyperlink\sby\sthe\sparser.
D 2014-02-20T19:32:38.618 D 2014-02-20T19:42:00.531
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81 F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -277,7 +277,7 @@ F src/update.c 5b3e74a03b3811e586b4f2b4cbd7c49f01c93115
F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269 F src/utf.c 6fc6c88d50448c469c5c196acf21617a24f90269
F src/util.c c46c90459ef9bdc0c6c73803cf4c55425b4771cf F src/util.c c46c90459ef9bdc0c6c73803cf4c55425b4771cf
F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179 F src/vacuum.c 3728d74919d4fb1356f9e9a13e27773db60b7179
F src/vdbe.c b82ffb8ca4a7b163f0d4450dce353259cbb12240 F src/vdbe.c c5ff7b384ed108be747220d4c47fcea6a36b062b
F src/vdbe.h 6c703ccef97f4504bd0d79cc09180185a60ae8ad F src/vdbe.h 6c703ccef97f4504bd0d79cc09180185a60ae8ad
F src/vdbeInt.h 5286af9067cabdb8ba57b87c0c988a931be6c6c8 F src/vdbeInt.h 5286af9067cabdb8ba57b87c0c988a931be6c6c8
F src/vdbeapi.c 5bc41aaea448a7fc250902c418f1795859be3820 F src/vdbeapi.c 5bc41aaea448a7fc250902c418f1795859be3820
@@ -1151,7 +1151,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
P d5d973fedcf5a2eea219f10e11ba3dacdd0593f0 P 824029090d1c4c4c608f67dd197961eba29c039d
R 76d0c1c651bb2a560b0883244ae73572 R 819e2e4df777a2f59b5f5445b2831eb5
U drh U drh
Z 5adb32a47d049f70cd5fc6a5768d989a Z c4d587ace814e560a6dc901fdec24d15

View File

@@ -1 +1 @@
824029090d1c4c4c608f67dd197961eba29c039d b46d4e8923e6e367412bba7aeac07039bbcbabd1

View File

@@ -1175,7 +1175,7 @@ case OP_SCopy: { /* out2 */
** The registers P1 through P1+P2-1 contain a single row of ** The registers P1 through P1+P2-1 contain a single row of
** results. This opcode causes the sqlite3_step() call to terminate ** results. This opcode causes the sqlite3_step() call to terminate
** with an SQLITE_ROW return code and it sets up the sqlite3_stmt ** with an SQLITE_ROW return code and it sets up the sqlite3_stmt
** structure to provide access to the r[P1]..r[P1+P2-1] values as ** structure to provide access to the r(P1)..r(P1+P2-1) values as
** the result row. ** the result row.
*/ */
case OP_ResultRow: { case OP_ResultRow: {