Skip to content

Commit

Permalink
git-gui: add missing close bracket
Browse files Browse the repository at this point in the history
In d9c6469 (git-gui: update status bar to track operations, 2019-12-01),
the status bar was refactored to allow multiple overlapping operations.

Since the refactor changed the status bar interface, all callsites had
to be refactored to use the new interface. During that refactoring, this
closing bracket was missed. This leads to an error message popping up
when doing 'Branch->Reset...'.

Signed-off-by: Pratyush Yadav <me@yadavpratyush.com>
  • Loading branch information
prati0100 committed Feb 17, 2020
1 parent 5897e5a commit 6b9919c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/merge.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Continue with resetting the current changes?"]
set status_bar_operation [$::main_status \
start \
[mc "Aborting"] \
[mc "files reset"]
[mc "files reset"]]
fileevent $fd readable [namespace code [list \
_reset_wait $fd $status_bar_operation]]
} else {
Expand Down

0 comments on commit 6b9919c

Please sign in to comment.