# HG changeset patch # User Christian Brabandt # Date 1483371003 -3600 # Node ID 8f2191b56d526caf58a7b812a88cbc55aad1d317 # Parent 5f1ca9427de671b1861e2078169b95ff2e4c2769 commit https://github.com/vim/vim/commit/b094ff4b2be4d8b7364c566a1cc7e27aa4452a50 Author: Bram Moolenaar Date: Mon Jan 2 16:16:39 2017 +0100 patch 8.0.0138 Problem: Small build fails. Solution: Add #ifdef. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -789,7 +789,11 @@ do_cmdline( /* It's possible to create an endless loop with ":execute", catch that * here. The value of 200 allows nested function calls, ":source", etc. * Allow 200 or 'maxfuncdepth', whatever is larger. */ - if (call_depth >= 200 && call_depth >= p_mfd) + if (call_depth >= 200 +#ifdef FEAT_EVAL + && call_depth >= p_mfd +#endif + ) { EMSG(_("E169: Command too recursive")); #ifdef FEAT_EVAL diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 138, +/**/ 137, /**/ 136,