commit | b07a39de485db5709a6b3e2f96e66ab06dd76279 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Oct 22 19:00:01 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Oct 22 19:00:01 2020 +0200 |
tree | 52cc16b985d05060eccbbe7964bdfda1224c7a1b | |
parent | e6e70a10f118ecfa9df2425e8724bc009bd09929 [diff] [blame] |
patch 8.2.1889: Vim9: errornous error for missing white space after {} Problem: Vim9: errornous error for missing white space after {}. Solution: Don't skip over white space after {}. (issue #7167)
diff --git a/src/dict.c b/src/dict.c index 503f5a5..8d07644 100644 --- a/src/dict.c +++ b/src/dict.c
@@ -950,7 +950,7 @@ return FAIL; } - *arg = skipwhite(*arg + 1); + *arg = *arg + 1; if (evaluate) rettv_dict_set(rettv, d);