commit | 20d89e0ac65686481f97657008deede0b39ef5db | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Oct 20 23:11:33 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Oct 20 23:11:33 2020 +0200 |
tree | 5e4b7cec2362f013dd0f35fbb40ca569644cc06f | |
parent | e9f9f16387554e5b34ba42ce00c42c28dd66af58 [diff] [blame] |
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)
diff --git a/src/usercmd.c b/src/usercmd.c index de49d41..261a629 100644 --- a/src/usercmd.c +++ b/src/usercmd.c
@@ -1153,7 +1153,7 @@ p = skipwhite(p); if (*p == NUL) break; - len += 3; // "," + len += 4; // ", " } else { @@ -1199,6 +1199,7 @@ break; *q++ = '"'; *q++ = ','; + *q++ = ' '; *q++ = '"'; } else