# HG changeset patch # User Bram Moolenaar # Date 1549633507 -3600 # Node ID ece3be0e03b62f4f0c4565488738f709a3029c64 # Parent bb1248a712d6c3115182c210f1a4209037e1bef9 patch 8.1.0882: checking for FEAT_MBYTE which doesn't exist anymore commit https://github.com/vim/vim/commit/1aa43755e2116ba744be13b6f596ea033a0d82ae Author: Bram Moolenaar Date: Fri Feb 8 14:41:31 2019 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 882, +/**/ 881, /**/ 880,