summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 042f53c)
raw | patch | inline | side by side (parent: 042f53c)
author | Shawn O. Pearce <spearce@spearce.org> | |
Fri, 14 Sep 2007 00:08:53 +0000 (20:08 -0400) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Fri, 14 Sep 2007 00:08:53 +0000 (20:08 -0400) |
The recent bug fix to correctly handle filenames with %s (or any
other valid Tcl format specifier) missed a \ on this line and
caused the remaining format arguments to not be supplied when we
updated the status bar. This caused a Tcl error anytime the user
was trying to perform a file revert.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
other valid Tcl format specifier) missed a \ on this line and
caused the remaining format arguments to not be supplied when we
updated the status bar. This caused a Tcl error anytime the user
was trying to perform a file revert.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
lib/index.tcl | patch | blob | history |
diff --git a/lib/index.tcl b/lib/index.tcl
index cbbce13a77587fc121659fd0c3c76ec261bcb09a..44689ab63b6c4563985b42c0ff20b8427f37cadc 100644 (file)
--- a/lib/index.tcl
+++ b/lib/index.tcl
ui_status [format \
"%s... %i/%i files (%.2f%%)" \
- $msg
+ $msg \
$update_index_cp \
$totalCnt \
0.0]