From 1aa43755e2116ba744be13b6f596ea033a0d82ae Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 8 Feb 2019 14:41:31 +0100 Subject: [PATCH] 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. --- src/fileio.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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, /**/ -- 2.50.1