0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.2.4161: Vim9: warning for missing white space after imported variable

Problem:    Vim9: warning for missing white space after imported variable.
Solution:   Do not skip white space. (closes #9567)
This commit is contained in:
Bram Moolenaar
2022-01-20 17:35:49 +00:00
parent 4ede01f188
commit 21f0d6cbca
3 changed files with 9 additions and 2 deletions

View File

@@ -321,7 +321,6 @@ compile_load_scriptvar(
cctx, TRUE);
}
*p = cc;
p = skipwhite(p);
*end = p;
if (done)
return res;