File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -1995,9 +1995,13 @@ if {[is_enabled multicommit]} {
19951995 }
19961996}
19971997
1998- .mbar.repository add command -label [ mc Quit] \
1999- -command do_quit \
2000- -accelerator $M1T -Q
1998+ if {[ is_MacOSX] } {
1999+ proc ::tk::mac::Quit {args} { do_quit }
2000+ } else {
2001+ .mbar.repository add command -label [ mc Quit] \
2002+ -command do_quit \
2003+ -accelerator $M1T -Q
2004+ }
20012005
20022006# -- Edit Menu
20032007#
Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ proc _reset_wait {fd} {
257257
258258 catch {file delete [gitdir MERGE_HEAD]}
259259 catch {file delete [gitdir rr-cache MERGE_RR]}
260+ catch {file delete [gitdir MERGE_RR]}
260261 catch {file delete [gitdir SQUASH_MSG]}
261262 catch {file delete [gitdir MERGE_MSG]}
262263 catch {file delete [gitdir GITGUI_MSG]}
You can’t perform that action at this time.
0 commit comments