forked from aniani/vim
patch 8.0.0138
Problem: Small build fails. Solution: Add #ifdef.
This commit is contained in:
@@ -789,7 +789,11 @@ do_cmdline(
|
|||||||
/* It's possible to create an endless loop with ":execute", catch that
|
/* It's possible to create an endless loop with ":execute", catch that
|
||||||
* here. The value of 200 allows nested function calls, ":source", etc.
|
* here. The value of 200 allows nested function calls, ":source", etc.
|
||||||
* Allow 200 or 'maxfuncdepth', whatever is larger. */
|
* 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"));
|
EMSG(_("E169: Command too recursive"));
|
||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
|
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
138,
|
||||||
/**/
|
/**/
|
||||||
137,
|
137,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user