diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2009-04-08 07:41:13 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2009-04-08 07:41:13 -0700 |
commit | 4339d5109c847fc938cd8405001ffde4d230c09f (patch) | |
tree | e55511718d7d17fb939e398f3cdd17c0e25fa9df /lib | |
parent | git-gui (Win): make starting via "Git GUI Here" on .git/ possible (diff) | |
parent | git-gui: Ensure consistent usage of mergetool.keepBackup (diff) | |
download | tgif-4339d5109c847fc938cd8405001ffde4d230c09f.tar.xz |
Merge branch 'maint'
* maint:
git-gui: Ensure consistent usage of mergetool.keepBackup
git-gui: fix use of undeclared variable diff_empty_count
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mergetool.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mergetool.tcl b/lib/mergetool.tcl index 3e1b42beb0..3fe90e6970 100644 --- a/lib/mergetool.tcl +++ b/lib/mergetool.tcl @@ -382,7 +382,7 @@ proc merge_tool_finish {fd} { delete_temp_files $mtool_tmpfiles ui_status [mc "Merge tool failed."] } else { - if {[is_config_true merge.keepbackup]} { + if {[is_config_true mergetool.keepbackup]} { file rename -force -- $backup "$mtool_target.orig" } |