Fix spacing of multi-argument %* substitutions
This commit is contained in:
@@ -753,6 +753,9 @@ namespace platf {
|
|||||||
// All arguments following the target
|
// All arguments following the target
|
||||||
case L'*':
|
case L'*':
|
||||||
for (int i = 1; i < raw_cmd_parts.size(); i++) {
|
for (int i = 1; i < raw_cmd_parts.size(); i++) {
|
||||||
|
if (i > 1) {
|
||||||
|
match_replacement += L' ';
|
||||||
|
}
|
||||||
match_replacement += raw_cmd_parts.at(i);
|
match_replacement += raw_cmd_parts.at(i);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user