diff options
| author | Pratyush Yadav <me@yadavpratyush.com> | 2020-05-05 17:31:05 +0530 |
|---|---|---|
| committer | Pratyush Yadav <me@yadavpratyush.com> | 2020-05-05 17:31:05 +0530 |
| commit | 88db24d724619d6c2e602c3b56016f59326d31e3 (patch) | |
| tree | 5bfca451d4e4238151e3766db8d912d7295cadd1 /git-gui.sh | |
| parent | a5728022e07c53e5ac91db0960870518e243b7c1 (diff) | |
| parent | 19195fbd73994d05abaa0a2976143da96b320f47 (diff) | |
| download | git-88db24d724619d6c2e602c3b56016f59326d31e3.tar.xz | |
Merge branch 'ar/ui-ready-semicolon'
Fix syntax error popups because of missing semicolons.
* ar/ui-ready-semicolon:
Subject: git-gui: fix syntax error because of missing semicolon
Diffstat (limited to 'git-gui.sh')
| -rwxr-xr-x | git-gui.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-gui.sh b/git-gui.sh index 4610e4ca72..faaf93b431 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -2600,12 +2600,12 @@ proc toggle_or_diff {mode w args} { update_indexinfo \ "Unstaging [short_path $path] from commit" \ [list $path] \ - [concat $after [list ui_ready]] + [concat $after {ui_ready;}] } elseif {$w eq $ui_workdir} { update_index \ "Adding [short_path $path]" \ [list $path] \ - [concat $after [list ui_ready]] + [concat $after {ui_ready;}] } } else { set selected_paths($path) 1 |
