Fix spacing of multi-argument %* substitutions
This commit is contained in:
parent
11c8cf176c
commit
c0ad9639c4
1 changed files with 3 additions and 0 deletions
|
|
@ -753,6 +753,9 @@ namespace platf {
|
|||
// All arguments following the target
|
||||
case L'*':
|
||||
for (int i = 1; i < raw_cmd_parts.size(); i++) {
|
||||
if (i > 1) {
|
||||
match_replacement += L' ';
|
||||
}
|
||||
match_replacement += raw_cmd_parts.at(i);
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue