commit | 0abc6e471ae78167bd75f95603b9bdd27ff0b38f | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Feb 26 22:21:23 2021 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Feb 26 22:21:23 2021 +0100 |
tree | 51a9f0123a02bc17bff911527ba36d8a9e46aa2b | |
parent | 9f646c2e1105f27484d7b008a29da554ff2c21b6 [diff] [blame] |
patch 8.2.2553: Vim9: Cannot put "|" after "{" Problem: Vim9: Cannot put "|" after "{". Solution: Add the EX_TRLBAR flag. (issue #7904)
diff --git a/src/ex_eval.c b/src/ex_eval.c index ad9de26..f6f766a 100644 --- a/src/ex_eval.c +++ b/src/ex_eval.c
@@ -912,7 +912,7 @@ enter_block(cstack_T *cstack) { ++cstack->cs_idx; - if (in_vim9script()) + if (in_vim9script() && current_sctx.sc_sid > 0) { scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);