diff src/dict.c @ 22681:674ba3200e1f v8.2.1889

patch 8.2.1889: Vim9: errornous error for missing white space after {} Commit: https://github.com/vim/vim/commit/b07a39de485db5709a6b3e2f96e66ab06dd76279 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 22 19:00:01 2020 +0200 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 https://github.com/vim/vim/issues/7167)
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Oct 2020 19:15:03 +0200
parents 0afa30d6dc72
children 20ccf5f7dc6d
line wrap: on
line diff
--- a/src/dict.c
+++ b/src/dict.c
@@ -950,7 +950,7 @@ failret:
 	return FAIL;
     }
 
-    *arg = skipwhite(*arg + 1);
+    *arg = *arg + 1;
     if (evaluate)
 	rettv_dict_set(rettv, d);