Skip to content

Commit 3f46206

Browse files
committed
updated for version 7.3.743
Problem: Tiny build still fails. Solution: Add #else in the right place.
1 parent a6a3487 commit 3f46206

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/ex_docmd.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,14 +1528,14 @@ do_cmdline(cmdline, fgetline, cookie, flags)
15281528
}
15291529
}
15301530

1531-
#ifndef FEAT_EVAL
1531+
#ifdef FEAT_EVAL
1532+
did_endif = FALSE; /* in case do_cmdline used recursively */
1533+
#else
15321534
/*
15331535
* Reset if_level, in case a sourced script file contains more ":if" than
15341536
* ":endif" (could be ":if x | foo | endif").
15351537
*/
15361538
if_level = 0;
1537-
1538-
did_endif = FALSE; /* in case do_cmdline used recursively */
15391539
#endif
15401540

15411541
--call_depth;

src/version.c

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

726726
static int included_patches[] =
727727
{ /* Add new patch number below this line */
728+
/**/
729+
743,
728730
/**/
729731
742,
730732
/**/

0 commit comments

Comments
 (0)