# HG changeset patch # User Bram Moolenaar # Date 1375017379 -7200 # Node ID f0361e297d9ceb533a17530647b4482c3990df3c # Parent 771f986ab9c0c1da13cb5e235d11649467236b47 updated for version 7.4a.046 Problem: Can't build without mbyte feature. Solution: Add #ifdefs. diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3453,7 +3453,9 @@ do_ecmd(fnum, ffname, sfname, eap, newln 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 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 46, +/**/ 45, /**/ 44,