From: drh
Date: Mon, 21 Mar 2005 00:28:24 +0000 (+0000)
Subject: Fix a formatting error in the syntax documentation. Ticket #1145. (CVS 2406)
X-Git-Tag: version-3.6.10~3752
X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47fb54da2e0b2d6b84aa81d1c3cc81a76e1a132d;p=thirdparty%2Fsqlite.git
Fix a formatting error in the syntax documentation. Ticket #1145. (CVS 2406)
FossilOrigin-Name: 59892be6a4c344cb6654f76e4b3b9db96d52f132
---
diff --git a/manifest b/manifest
index fa7ad72858..4dbb384e9d 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sfor\sticket\s#1167\s(CVS\s2405)
-D 2005-03-20T23:18:58
+C Fix\sa\sformatting\serror\sin\sthe\ssyntax\sdocumentation.\s\sTicket\s#1145.\s(CVS\s2406)
+D 2005-03-21T00:28:24
F Makefile.in 5c00d0037104de2a50ac7647a5f12769795957a3
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@@ -260,7 +260,7 @@ F www/faq.tcl 1e348dec52dc0f21f4216fd6918c69c56daa4cfd
F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl ec974d74a87f7ae69d0626848bfcf716865c3291
F www/index.tcl d205e4f360829c2f2805b7d4c11f8b293e1f6bac
-F www/lang.tcl 074e2d08fbe7c756988a9192856e962c8734f797
+F www/lang.tcl 5b4c95284d5284970526104b676dcdffe1889927
F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
F www/nulls.tcl ec35193f92485b87b90a994a01d0171b58823fcf
@@ -277,7 +277,7 @@ F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P 1865e0d81c827cc879dde96c6a9f42e740b6a560
-R 972e08d5ec310ce60698cf6b6ea30915
+P d9aa0aa9ae2ca0dec976ba2ae4cd7047132be45b
+R 2b34668b2d8f277a786664b2b3ee3d4b
U drh
-Z 31ff3bc2cefdbf561966a8371bf8188f
+Z 57278797fa48aac7cc9da77551ab025e
diff --git a/manifest.uuid b/manifest.uuid
index 83bcce7b5d..f1c9e27250 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-d9aa0aa9ae2ca0dec976ba2ae4cd7047132be45b
\ No newline at end of file
+59892be6a4c344cb6654f76e4b3b9db96d52f132
\ No newline at end of file
diff --git a/www/lang.tcl b/www/lang.tcl
index cd80e90dbf..b46442be54 100644
--- a/www/lang.tcl
+++ b/www/lang.tcl
@@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the lang-*.html files.
#
-set rcsid {$Id: lang.tcl,v 1.87 2005/03/19 14:45:50 drh Exp $}
+set rcsid {$Id: lang.tcl,v 1.88 2005/03/21 00:28:24 drh Exp $}
source common.tcl
if {[llength $argv]>0} {
@@ -1007,14 +1007,6 @@ respectively. The infix LIKE operator is implemented by calling the
user function like(X,Y).
}
-puts {
-The LIKE operator does a wildcard comparison. The operand
-to the right contains the wildcards.}
-puts "A percent symbol [Operator %] in the right operand
-matches any sequence of zero or more characters on the left.
-An underscore [Operator _] on the right
-matches any single character on the left."
-
puts {
The LIKE operator is not case sensitive and will match upper case
characters on one side against lower case characters on the other.