Skip to content

Commit 2379f87

Browse files
committed
patch 8.2.2514: Vim9: build error in tiny version
Problem: Vim9: build error in tiny version. Solution: Add #ifdef.
1 parent 9979fcd commit 2379f87

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/ex_docmd.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,9 @@ do_one_cmd(
17851785
if (parse_command_modifiers(&ea, &errormsg, &cmdmod, FALSE) == FAIL)
17861786
goto doend;
17871787
apply_cmdmod(&cmdmod);
1788+
#ifdef FEAT_EVAL
17881789
vim9script = in_vim9script();
1790+
#endif
17891791
after_modifier = ea.cmd;
17901792

17911793
#ifdef FEAT_EVAL

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2514,
753755
/**/
754756
2513,
755757
/**/

0 commit comments

Comments
 (0)