0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.1-210

This commit is contained in:
Bram Moolenaar
2008-01-06 16:18:56 +00:00
parent 51b5ab9729
commit 6203ff97b7
2 changed files with 6 additions and 2 deletions

View File

@@ -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