File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2600,12 +2600,12 @@ proc toggle_or_diff {mode w args} {
26002600 update_indexinfo \
26012601 " Unstaging [short_path $path ] from commit" \
26022602 [ list $path ] \
2603- [ concat $after [ list ui_ready] ]
2603+ [ concat $after { ui_ready;} ]
26042604 } elseif {$w eq $ui_workdir } {
26052605 update_index \
26062606 " Adding [short_path $path ]" \
26072607 [ list $path ] \
2608- [ concat $after [ list ui_ready] ]
2608+ [ concat $after { ui_ready;} ]
26092609 }
26102610 } else {
26112611 set selected_paths($path ) 1
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ proc rescan_on_error {err {after {}}} {
6060
6161 $::main_status stop_all
6262 unlock_index
63- rescan [concat $after [ list ui_ready] ] 0
63+ rescan [concat $after { ui_ready;} ] 0
6464}
6565
6666proc update_indexinfo {msg path_list after} {
@@ -314,7 +314,7 @@ proc unstage_helper {txt paths} {
314314 update_indexinfo \
315315 $txt \
316316 $path_list \
317- [concat $after [ list ui_ready] ]
317+ [concat $after { ui_ready;} ]
318318 }
319319}
320320
@@ -366,7 +366,7 @@ proc add_helper {txt paths} {
366366 update_index \
367367 $txt \
368368 $path_list \
369- [concat $after {ui_status [mc " Ready to commit." ]}]
369+ [concat $after {ui_status [mc " Ready to commit." ]; }]
370370 }
371371}
372372
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ proc merge_add_resolution {path} {
5959 update_index \
6060 [mc " Adding resolution for %s" [short_path $path ]] \
6161 [list $path ] \
62- [concat $after [ list ui_ready] ]
62+ [concat $after { ui_ready;} ]
6363}
6464
6565proc merge_force_stage {stage} {
You can’t perform that action at this time.
0 commit comments