0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.1671: Vim9: stray error for missing white space

Problem:    Vim9: stray error for missing white space.
Solution:   Do not skip over white space after member. (closes #6817)
This commit is contained in:
Bram Moolenaar
2020-09-12 21:27:03 +02:00
parent 8f13d82fa6
commit c6e57b74fa
3 changed files with 13 additions and 1 deletions

View File

@@ -3586,7 +3586,7 @@ eval_index(
;
if (keylen == 0)
return FAIL;
*arg = skipwhite(key + keylen);
*arg = key + keylen;
}
else
{