diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-08 15:32:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-08 15:32:54 +0200 |
commit | ba768495c2e6bae74e49d22d489fbf211ecad55e (patch) | |
tree | 99069fc8f3f641b90dbc9a8ed8e726fb7e4ef4f0 | |
parent | 245a7cb6d33e556415c9fcaa874b784a6d8f0ef3 (diff) | |
download | vim-git-ba768495c2e6bae74e49d22d489fbf211ecad55e.tar.gz |
patch 7.4.2001v7.4.2001
Problem: Tiny build fails. (Tony Mechelynck)
Solution: Add #ifdef.
-rw-r--r-- | src/ex_docmd.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
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 @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2001, +/**/ 2000, /**/ 1999, |