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

updated for version 7.0142

This commit is contained in:
Bram Moolenaar
2005-09-06 19:25:11 +00:00
parent 4440382f3c
commit cafda4f893
25 changed files with 105 additions and 62 deletions

View File

@@ -3480,6 +3480,15 @@ win_line(wp, lnum, startrow, endrow)
if (mb_c < 0x80)
c = mb_c;
mb_utf8 = TRUE;
/* At start of the line we can have a composing char.
* Draw it as a space with a composing char. */
if (utf_iscomposing(mb_c))
{
u8c_c2 = u8c_c1;
u8c_c1 = mb_c;
mb_c = ' ';
}
}
if ((mb_l == 1 && c >= 0x80)