# HG changeset patch # User vimboss # Date 1199636336 0 # Node ID 04265ffbda1f9b14729bc5d85069ff0711ce3744 # Parent 58a14bafc1f08b9712732a26a44c2a93e34e6ae2 updated for version 7.1-210 diff --git a/src/mbyte.c b/src/mbyte.c --- a/src/mbyte.c +++ b/src/mbyte.c @@ -2863,15 +2863,17 @@ mb_unescape(pp) buf[m++] = K_SPECIAL; n += 2; } + else if ((str[n] == K_SPECIAL # ifdef FEAT_GUI - else if (str[n] == CSI + || str[n] == CSI +# endif + ) && str[n + 1] == KS_EXTRA && str[n + 2] == (int)KE_CSI) { buf[m++] = CSI; n += 2; } -# endif else if (str[n] == K_SPECIAL # ifdef FEAT_GUI || str[n] == CSI diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 210, +/**/ 209, /**/ 208,