From: Bert Wesarg Date: Fri, 14 Oct 2011 19:25:19 +0000 (+0200) Subject: git-gui: fix unintended line break in message string X-Git-Tag: gitgui-0.15.0~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b020bbd5a0923ceac688fcec1f760beec00dd5ec;p=git.git git-gui: fix unintended line break in message string Signed-off-by: Bert Wesarg Signed-off-by: Pat Thoyts --- 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] }