From: Bram Moolenaar Date: Fri, 8 Feb 2019 13:41:31 +0000 (+0100) Subject: patch 8.1.0882: checking for FEAT_MBYTE which doesn't exist anymore X-Git-Tag: v8.1.0882 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1aa43755e2116ba744be13b6f596ea033a0d82ae;p=vim patch 8.1.0882: checking for FEAT_MBYTE which doesn't exist anymore Problem: Checking for FEAT_MBYTE which doesn't exist anymore. (Christ van Willegen) Solution: Remove it. --- diff --git a/src/fileio.c b/src/fileio.c index 446ae7edf..c1aa1a76f 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -7471,7 +7471,7 @@ vim_tempname( if (*p == '\\') *p = '/'; -#if defined(FEAT_MBYTE) && defined(WIN3264) +#if defined(WIN3264) if (enc_utf8) { int len; diff --git a/src/version.c b/src/version.c index 48236fe35..164fd4403 100644 --- a/src/version.c +++ b/src/version.c @@ -783,6 +783,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 882, /**/ 881, /**/