patch 7.4.2001
Problem: Tiny build fails. (Tony Mechelynck)
Solution: Add #ifdef.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 0388de8..b892b63 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -9455,11 +9455,13 @@
char_u *fname;
char_u *arg = eap->arg;
+#ifdef FEAT_EVAL
if (redir_evalcmd)
{
EMSG(_("E930: Cannot use :redir inside evalcmd()"));
return;
}
+#endif
if (STRICMP(eap->arg, "END") == 0)
close_redir();
diff --git a/src/version.c b/src/version.c
index 6224e3d..4dcb286 100644
--- a/src/version.c
+++ b/src/version.c
@@ -759,6 +759,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2001,
+/**/
2000,
/**/
1999,