aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Wesarg <bert.wesarg@googlemail.com>2011-10-14 21:25:19 +0200
committerPat Thoyts <patthoyts@users.sourceforge.net>2011-10-18 09:44:10 +0100
commitb020bbd5a0923ceac688fcec1f760beec00dd5ec (patch)
tree8c6fe60126690e95ba16750718e5e6068208de7b
parenta8ca786991f7308ef12cb1d54ff5d28137c0feb1 (diff)
downloadgit-b020bbd5a0923ceac688fcec1f760beec00dd5ec.tar.gz
git-b020bbd5a0923ceac688fcec1f760beec00dd5ec.tar.xz
git-gui: fix unintended line break in message string
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
-rw-r--r--lib/index.tcl3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/index.tcl b/lib/index.tcl
index e38b647b7..3a9c8b776 100644
--- a/lib/index.tcl
+++ b/lib/index.tcl
@@ -367,8 +367,7 @@ proc do_add_all {} {
}
}
if {[llength $unknown_paths]} {
- set reply [ask_popup [mc "There are unknown files do you also want
-to stage those?"]]
+ set reply [ask_popup [mc "There are unknown files do you also want to stage those?"]]
if {$reply} {
set paths [concat $paths $unknown_paths]
}