Skip to content

Commit b094ff4

Browse files
committed
patch 8.0.0138
Problem: Small build fails. Solution: Add #ifdef.
1 parent 777b30f commit b094ff4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/ex_docmd.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,11 @@ do_cmdline(
789789
/* It's possible to create an endless loop with ":execute", catch that
790790
* here. The value of 200 allows nested function calls, ":source", etc.
791791
* Allow 200 or 'maxfuncdepth', whatever is larger. */
792-
if (call_depth >= 200 && call_depth >= p_mfd)
792+
if (call_depth >= 200
793+
#ifdef FEAT_EVAL
794+
&& call_depth >= p_mfd
795+
#endif
796+
)
793797
{
794798
EMSG(_("E169: Command too recursive"));
795799
#ifdef FEAT_EVAL

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
138,
767769
/**/
768770
137,
769771
/**/

0 commit comments

Comments
 (0)