summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-08 14:41:31 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-08 14:41:31 +0100
commit1aa43755e2116ba744be13b6f596ea033a0d82ae (patch)
treeb85e5772a96eb8317eaa319313f1052e933298f7
parent8c62a08faf89663e5633dc5036cd8695c80f1075 (diff)
patch 8.1.0882: checking for FEAT_MBYTE which doesn't exist anymorev8.1.0882
Problem: Checking for FEAT_MBYTE which doesn't exist anymore. (Christ van Willegen) Solution: Remove it.
-rw-r--r--src/fileio.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 446ae7edf8..c1aa1a76f9 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 48236fe354..164fd44032 100644
--- 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,