mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.1468: Vim9: invalid error for missing white space
Problem: Vim9: invalid error for missing white space. Solution: Don't skip over white space after index. (closes #6718)
This commit is contained in:
@@ -3624,7 +3624,7 @@ eval_index(
|
||||
clear_tv(&var2);
|
||||
return FAIL;
|
||||
}
|
||||
*arg = skipwhite(*arg + 1); // skip the ']'
|
||||
*arg = *arg + 1; // skip over the ']'
|
||||
}
|
||||
|
||||
if (evaluate)
|
||||
|
Reference in New Issue
Block a user