From: Bram Moolenaar Date: Fri, 8 Jul 2016 13:32:54 +0000 (+0200) Subject: patch 7.4.2001 X-Git-Tag: v7.4.2001 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba768495c2e6bae74e49d22d489fbf211ecad55e;p=vim 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 0388de8da..b892b6307 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -9455,11 +9455,13 @@ ex_redir(exarg_T *eap) 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 6224e3dce..4dcb286aa 100644 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2001, /**/ 2000, /**/