diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-09-27 06:15:29 (GMT) |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-09-28 02:17:01 (GMT) |
commit | 0b2bc460fc69d2aa4f5af743b2b2317088e53949 (patch) | |
tree | 4369d6b57fa1407040aafbacc76f968d851f2858 | |
parent | 72a8e81d457a1ee1283817d03d8e28303c2b4e7e (diff) | |
download | git-0b2bc460fc69d2aa4f5af743b2b2317088e53949.zip git-0b2bc460fc69d2aa4f5af743b2b2317088e53949.tar.gz git-0b2bc460fc69d2aa4f5af743b2b2317088e53949.tar.bz2 |
git-gui: Refer to ourselves as "Git Gui" and not "git-gui"
When displaying the name of the application in window titles
and menu options (e.g. "About [appname]") we would prefer to
call ourselves "Git Gui" over "git-gui" as the former name is
now being actively used in the Mac OS X UI strings and just
plain looks better to the reader.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | git-gui.sh | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -108,7 +108,7 @@ unset oguimsg ## ## read only globals -set _appname [lindex [file split $argv0] end] +set _appname {Git Gui} set _gitdir {} set _gitexec {} set _reponame {} @@ -789,7 +789,7 @@ unset -nocomplain idx fd ## ## feature option selection -if {[regexp {^git-(.+)$} [appname] _junk subcommand]} { +if {[regexp {^git-(.+)$} [file tail $argv0] _junk subcommand]} { unset _junk } else { set subcommand gui @@ -2140,7 +2140,8 @@ citool - gui { if {[llength $argv] != 0} { puts -nonewline stderr "usage: $argv0" - if {$subcommand ne {gui} && [appname] ne "git-$subcommand"} { + if {$subcommand ne {gui} + && [file tail $argv0] ne "git-$subcommand"} { puts -nonewline stderr " $subcommand" } puts stderr {} |