From a2320f43ea9d3991e3dc2dd8595a7dfb76138093 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 28 Jul 2013 15:16:19 +0200 Subject: [PATCH] updated for version 7.4a.046 Problem: Can't build without mbyte feature. Solution: Add #ifdefs. --- src/ex_cmds.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index c08bb21cb..66e170208 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3453,7 +3453,9 @@ do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin) if (!oldbuf && eap != NULL) { set_file_options(TRUE, eap); +#ifdef FEAT_MBYTE set_forced_fenc(eap); +#endif } } diff --git a/src/version.c b/src/version.c index da09f6e2b..07716b544 100644 --- a/src/version.c +++ b/src/version.c @@ -727,6 +727,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 46, /**/ 45, /**/ -- 2.40.0