Correct minor typo in two regular expressions.

FossilOrigin-Name: f1eed92b7b0ef4ee22a11d8bb4f9a572b56ce019
This commit is contained in:
mistachkin 2013-04-11 00:45:28 +00:00
parent eeeee7f55d
commit 73c4041b43
3 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
C Designate\sthe\sbeginning\sand\sthe\send\sof\sthe\ssqlite3session.h\sfile\sin\sthe\nconstructed\ssqlite3.h\sfile.
D 2013-04-10T15:01:36.565
C Correct\sminor\stypo\sin\stwo\sregular\sexpressions.
D 2013-04-11T00:45:28.510
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 174bfca74e57f38699e3412a984f6b38106750fa
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@ -1026,7 +1026,7 @@ F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e
F tool/mkspeedsql.tcl a1a334d288f7adfe6e996f2e712becf076745c97
F tool/mksqlite3c-noext.tcl 8bce31074e4cbe631bb7676526a048335f4c9f02
F tool/mksqlite3c.tcl 521b39c2d2987c4257919b97a3cfb3bd4a394bf1
F tool/mksqlite3h.tcl c26c2c00f6402dff490b9d088b35022a65079f9b
F tool/mksqlite3h.tcl 2d0f1b3768f8d000b7881217d5fd4c776eb27467
F tool/mksqlite3internalh.tcl 3dca7bb5374cee003379b8cbac73714f610ef795
F tool/mkvsix.tcl 0be7f7a591f1e83f9199cb82911b66668ca484c9
F tool/offsets.c fe4262fdfa378e8f5499a42136d17bf3b98f6091
@ -1054,7 +1054,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 ee35a89712b8ea9f4e70d61a29150348896b519f
R 100e7ec13abd2ea8455e764a279a1723
U drh
Z 4925298600da5fcf8376b1bdce3109e3
P 53f5be74327162a2bd25a91eaf7c91b126294727
R 135af717c2fd2e17b5a8c6896e5cb14f
U mistachkin
Z b1ea33e149cde9618b3874273f57fbc4

View File

@ -1 +1 @@
53f5be74327162a2bd25a91eaf7c91b126294727
f1eed92b7b0ef4ee22a11d8bb4f9a572b56ce019

View File

@ -78,7 +78,7 @@ set filelist [subst {
#
foreach file $filelist {
set in [open $file]
if {![regexp {sqlite.h.in} $file]} {
if {![regexp {sqlite\.h\.in} $file]} {
puts "/******** Begin file [file tail $file] *********/"
}
while {![eof $in]} {
@ -112,7 +112,7 @@ foreach file $filelist {
puts $line
}
close $in
if {![regexp {sqlite.h.in} $file]} {
if {![regexp {sqlite\.h\.in} $file]} {
puts "/******** End of [file tail $file] *********/"
}
}