From: Bram Moolenaar Date: Wed, 26 Aug 2015 21:24:09 +0000 (+0200) Subject: patch 7.4.841 X-Git-Tag: v7.4.841 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ea87a04964b0ccd017380b8247d04d2a69f6062;p=vim patch 7.4.841 Problem: Can't compile without the multi-byte feature. (John Marriott) Solution: Add more #ifdef's. --- diff --git a/src/option.c b/src/option.c index f0d1996a2..2fc6bd048 100644 --- a/src/option.c +++ b/src/option.c @@ -3652,13 +3652,19 @@ set_options_default(opt_flags) for (i = 0; !istermoption(&options[i]); i++) if (!(options[i].flags & P_NODEFAULT) +#if defined(FEAT_MBYTE) || defined(FEAT_CRYPT) && (opt_flags == 0 - || (options[i].var != (char_u *)&p_enc -#if defined(FEAT_CRYPT) + || (TRUE +# if defined(FEAT_MBYTE) + && options[i].var != (char_u *)&p_enc +# endif +# if defined(FEAT_CRYPT) && options[i].var != (char_u *)&p_cm && options[i].var != (char_u *)&p_key +# endif + )) #endif - ))) + ) set_option_default(i, opt_flags, p_cp); #ifdef FEAT_WINDOWS diff --git a/src/version.c b/src/version.c index b842fcf76..bc95c5d6f 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 841, /**/ 840, /**/