Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct minor typo in two regular expressions. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sessions |
Files: | files | file ages | folders |
SHA1: |
f1eed92b7b0ef4ee22a11d8bb4f9a572 |
User & Date: | mistachkin 2013-04-11 00:45:28.510 |
Context
2013-04-12
| ||
13:53 | Fix the xCheckReservedLock() method on the windows VFS so that it cannot return a false positive when two or more processes use it at the same time on the same file. Ticket [7ff3120e4fa54abb55]. Update to version 3.7.16.2. (check-in: 67b3c0efa7 user: drh tags: sessions) | |
2013-04-11
| ||
00:45 | Correct minor typo in two regular expressions. (check-in: f1eed92b7b user: mistachkin tags: sessions) | |
2013-04-10
| ||
15:01 | Designate the beginning and the end of the sqlite3session.h file in the constructed sqlite3.h file. (check-in: 53f5be7432 user: drh tags: sessions) | |
Changes
Changes to tool/mksqlite3h.tcl.
︙ | ︙ | |||
74 75 76 77 78 79 80 | $TOP/ext/session/sqlite3session.h }] # Process the source files. # foreach file $filelist { set in [open $file] | | | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | $TOP/ext/session/sqlite3session.h }] # Process the source files. # foreach file $filelist { set in [open $file] if {![regexp {sqlite\.h\.in} $file]} { puts "/******** Begin file [file tail $file] *********/" } while {![eof $in]} { set line [gets $in] # File sqlite3rtree.h contains a line "#include <sqlite3.h>". Omit this |
︙ | ︙ | |||
108 109 110 111 112 113 114 | || ([regexp $declpattern $line]) } { set line "SQLITE_API $line" } puts $line } close $in | | | 108 109 110 111 112 113 114 115 116 117 118 | || ([regexp $declpattern $line]) } { set line "SQLITE_API $line" } puts $line } close $in if {![regexp {sqlite\.h\.in} $file]} { puts "/******** End of [file tail $file] *********/" } } |