diff options
-rw-r--r-- | src/misc1.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c index 046e2f067..cc5d5e60f 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -2180,7 +2180,7 @@ ins_char(int c) char_u buf[MB_MAXBYTES + 1]; int n = 1; -#if defined(FEAT_MBYTE) || defined(PROTO) +#ifdef FEAT_MBYTE n = (*mb_char2bytes)(c, buf); /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte. diff --git a/src/version.c b/src/version.c index 84cb94030..5cca0342e 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 221, +/**/ 220, /**/ 219, |