commit | f923571ec17b6caeeb7f4abfd7eec3f707ab9c45 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Aug 16 18:42:53 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Aug 16 18:42:53 2020 +0200 |
tree | 490d04346ddc61143ade2158206ab510ec3a91ca | |
parent | e5abf7af08ff69e7e038c067497f080d4e44332c [diff] [blame] |
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)
diff --git a/src/eval.c b/src/eval.c index 37ed515..3c4a8c5 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -3624,7 +3624,7 @@ clear_tv(&var2); return FAIL; } - *arg = skipwhite(*arg + 1); // skip the ']' + *arg = *arg + 1; // skip over the ']' } if (evaluate)