summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8938410)
raw | patch | inline | side by side (parent: 8938410)
author | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 11 Sep 2007 17:37:45 +0000 (13:37 -0400) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 11 Sep 2007 22:57:18 +0000 (18:57 -0400) |
The Windows port of Tk does not have the send command so we
cannot delete it from our global namespace, but the Mac OS
X and X11 ports do have it. Switching this delete attempt
into a catch makes send go away, or stay away.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
cannot delete it from our global namespace, but the Mac OS
X and X11 ports do have it. Switching this delete attempt
into a catch makes send go away, or stay away.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh | patch | blob | history |
diff --git a/git-gui.sh b/git-gui.sh
index 26eb5ac30947235c11490ea5d396809e9119bb71..e221d5b511dbcbed5c6142634810d98ba08e2449 100755 (executable)
--- a/git-gui.sh
+++ b/git-gui.sh
exit 1
}
-rename send {} ; # What an evil concept...
+catch {rename send {}} ; # What an evil concept...
######################################################################
##