commit | 2379f87eb48a4ee6a1d0fc7df964e12a3efe4fd5 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 14 14:07:34 2021 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 14 14:07:34 2021 +0100 |
tree | a02fda0d39cc9ac13c675c259daea92806210051 | |
parent | 9979fcd72ed671ec2c98800587c3a6996adb27d4 [diff] [blame] |
patch 8.2.2514: Vim9: build error in tiny version Problem: Vim9: build error in tiny version. Solution: Add #ifdef.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 0bb5142..0dd21eb 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -1785,7 +1785,9 @@ if (parse_command_modifiers(&ea, &errormsg, &cmdmod, FALSE) == FAIL) goto doend; apply_cmdmod(&cmdmod); +#ifdef FEAT_EVAL vim9script = in_vim9script(); +#endif after_modifier = ea.cmd; #ifdef FEAT_EVAL