commit | badd8486f7442bfcf55e0234ece80488958e7114 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Jul 31 22:38:17 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Jul 31 22:38:17 2020 +0200 |
tree | a1f41f30f0e7579585be9dcd4f6e84f7157429c1 | |
parent | 3a53ec8bdddccf06a0e9db263277c50a6015294d [diff] [blame] |
patch 8.2.1331: Vim9: :echo with two lists doesn't work Problem: Vim9: :echo with two lists doesn't work. Solution: Do not skip white space before []. (closes #6552)
diff --git a/src/vim9compile.c b/src/vim9compile.c index b9b2b6f..87a9fd1 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c
@@ -3855,7 +3855,7 @@ return FAIL; } } - else if (*p == '[') + else if (**arg == '[') { garray_T *stack = &cctx->ctx_type_stack; type_T **typep;