Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Unified Diff: third_party/sqlite/src/tool/replace.tcl

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/tool/opcodesum.tcl ('k') | third_party/sqlite/src/tool/run-speed-test.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/tool/replace.tcl
diff --git a/third_party/sqlite/src/tool/replace.tcl b/third_party/sqlite/src/tool/replace.tcl
index b01a83accb8c158ecb8e10ae4b8b2221856326ad..5a1ac5983c44c9233aa7e954121d7e38f6f30f29 100644
--- a/third_party/sqlite/src/tool/replace.tcl
+++ b/third_party/sqlite/src/tool/replace.tcl
@@ -4,16 +4,19 @@
# only lines successfully modified with a regular
# expression.
#
+fconfigure stdout -translation binary -encoding binary
+fconfigure stderr -translation binary -encoding binary
set mode [string tolower [lindex $argv 0]]
set from [lindex $argv 1]
set to [lindex $argv 2]
-if {$mode ni [list exact include]} {exit 1}
+if {$mode ni [list exact regsub include]} {exit 1}
if {[string length $from]==0} {exit 2}
while {![eof stdin]} {
set line [gets stdin]
if {[eof stdin]} break
switch -exact $mode {
exact {set line [string map [list $from $to] $line]}
+ regsub {regsub -all -- $from $line $to line}
include {if {[regsub -all -- $from $line $to line]==0} continue}
}
puts stdout $line
« no previous file with comments | « third_party/sqlite/src/tool/opcodesum.tcl ('k') | third_party/sqlite/src/tool/run-speed-test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698