0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.1-158

This commit is contained in:
Bram Moolenaar
2007-11-20 16:22:16 +00:00
parent f998c04691
commit 85a3e5c7c6
3 changed files with 26 additions and 4 deletions

View File

@@ -1521,7 +1521,12 @@ mch_inchar(
#endif
)
{
#ifdef FEAT_MBYTE
n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
typeahead + typeaheadlen);
#else
typeahead[typeaheadlen] |= 0x80;
#endif
modifiers &= ~MOD_MASK_ALT;
}