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:
@@ -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
|
||||
|
Reference in New Issue
Block a user