changeset 5242:f0361e297d9c v7.4a.046

updated for version 7.4a.046 Problem: Can't build without mbyte feature. Solution: Add #ifdefs.
author Bram Moolenaar <bram@vim.org>
date Sun, 28 Jul 2013 15:16:19 +0200
parents 771f986ab9c0
children 1acc2a779325
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
 		    }
 		}
 
--- 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,