Skip to content

Commit

Permalink
patch 7.4.2001
Browse files Browse the repository at this point in the history
Problem:    Tiny build fails. (Tony Mechelynck)
Solution:   Add #ifdef.
  • Loading branch information
brammool committed Jul 8, 2016
1 parent 245a7cb commit ba76849
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ex_docmd.c
Expand Up @@ -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();
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -758,6 +758,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2001,
/**/
2000,
/**/
Expand Down

0 comments on commit ba76849

Please sign in to comment.