0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.1873: Vim9: missing white space when using <f-args>

Problem:    Vim9: missing white space when using <f-args>.
Solution:   Add spaces. (Christian J. Robinson)
This commit is contained in:
Bram Moolenaar
2020-10-20 23:11:33 +02:00
parent e9f9f16387
commit 20d89e0ac6
3 changed files with 22 additions and 1 deletions

View File

@@ -1153,7 +1153,7 @@ uc_split_args(char_u *arg, size_t *lenp)
p = skipwhite(p);
if (*p == NUL)
break;
len += 3; // ","
len += 4; // ", "
}
else
{
@@ -1199,6 +1199,7 @@ uc_split_args(char_u *arg, size_t *lenp)
break;
*q++ = '"';
*q++ = ',';
*q++ = ' ';
*q++ = '"';
}
else