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:
@@ -3586,7 +3586,7 @@ eval_index(
|
||||
;
|
||||
if (keylen == 0)
|
||||
return FAIL;
|
||||
*arg = skipwhite(key + keylen);
|
||||
*arg = key + keylen;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user