diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-23 00:20:04 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-23 00:20:04 -0400 |
commit | 9c5a3c7797449e1b3e6455327394677c21f0f908 (patch) | |
tree | d9eaea1e57315f9f8e6882c0177e1bcdcc15babe | |
parent | git-gui: Clarify meaning of add tracked menu option (diff) | |
download | tgif-9c5a3c7797449e1b3e6455327394677c21f0f908.tar.xz |
git-gui: Paper bag fix quitting crash after commit
My earlier introduction of the GITGUI_BCK file (which saves the user's
commit message buffer while they are typing it) broke the Quit function.
If the user makes a commit we delete the GITGUI_BCK file; if they then
immediately quit the application we fail to rename the GITGUI_BCK file
to GITGUI_MSG. This is because the file does not exist, but our flag
still says it does. The root cause is we did not unset the flag during
commit.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | lib/commit.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/commit.tcl b/lib/commit.tcl index 6b86f9808e..1f5c2c3d44 100644 --- a/lib/commit.tcl +++ b/lib/commit.tcl @@ -381,7 +381,7 @@ A rescan will be automatically started now. $ui_comm edit modified false if {$::GITGUI_BCK_exists} { catch {file delete [gitdir GITGUI_BCK]} - set $::GITGUI_BCK_exists 0 + set ::GITGUI_BCK_exists 0 } if {[is_enabled singlecommit]} do_quit |