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} {
2600
2600
update_indexinfo \
2601
2601
" Unstaging [short_path $path ] from commit" \
2602
2602
[ list $path ] \
2603
- [ concat $after [ list ui_ready] ]
2603
+ [ concat $after { ui_ready;} ]
2604
2604
} elseif {$w eq $ui_workdir } {
2605
2605
update_index \
2606
2606
" Adding [short_path $path ]" \
2607
2607
[ list $path ] \
2608
- [ concat $after [ list ui_ready] ]
2608
+ [ concat $after { ui_ready;} ]
2609
2609
}
2610
2610
} else {
2611
2611
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 {}}} {
60
60
61
61
$::main_status stop_all
62
62
unlock_index
63
- rescan [concat $after [ list ui_ready] ] 0
63
+ rescan [concat $after { ui_ready;} ] 0
64
64
}
65
65
66
66
proc update_indexinfo {msg path_list after} {
@@ -314,7 +314,7 @@ proc unstage_helper {txt paths} {
314
314
update_indexinfo \
315
315
$txt \
316
316
$path_list \
317
- [concat $after [ list ui_ready] ]
317
+ [concat $after { ui_ready;} ]
318
318
}
319
319
}
320
320
@@ -366,7 +366,7 @@ proc add_helper {txt paths} {
366
366
update_index \
367
367
$txt \
368
368
$path_list \
369
- [concat $after {ui_status [mc " Ready to commit." ]}]
369
+ [concat $after {ui_status [mc " Ready to commit." ]; }]
370
370
}
371
371
}
372
372
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ proc merge_add_resolution {path} {
59
59
update_index \
60
60
[mc " Adding resolution for %s" [short_path $path ]] \
61
61
[list $path ] \
62
- [concat $after [ list ui_ready] ]
62
+ [concat $after { ui_ready;} ]
63
63
}
64
64
65
65
proc merge_force_stage {stage} {
You can’t perform that action at this time.
0 commit comments