We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 777b30f commit b094ff4Copy full SHA for b094ff4
src/ex_docmd.c
@@ -789,7 +789,11 @@ do_cmdline(
789
/* It's possible to create an endless loop with ":execute", catch that
790
* here. The value of 200 allows nested function calls, ":source", etc.
791
* Allow 200 or 'maxfuncdepth', whatever is larger. */
792
- if (call_depth >= 200 && call_depth >= p_mfd)
+ if (call_depth >= 200
793
+#ifdef FEAT_EVAL
794
+ && call_depth >= p_mfd
795
+#endif
796
+ )
797
{
798
EMSG(_("E169: Command too recursive"));
799
#ifdef FEAT_EVAL
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 138,
769
/**/
770
137,
771
0 commit comments