1
0
forked from aniani/vim

updated for version 7.0127

This commit is contained in:
Bram Moolenaar
2005-08-10 21:07:57 +00:00
parent c388fbf9d9
commit 0fa313a718
47 changed files with 638 additions and 465 deletions

View File

@@ -2530,7 +2530,7 @@ gui_mch_draw_string(row, col, s, len, flags)
buf[wlen].byte2 = c;
++wlen;
cells += utf_char2cells(c);
p += utf_ptr2len_check(p);
p += utf_ptr2len(p);
}
}
else if (has_mbyte)
@@ -2539,7 +2539,7 @@ gui_mch_draw_string(row, col, s, len, flags)
for (p = s; p < s + len; )
{
cells += ptr2cells(p);
p += (*mb_ptr2len_check)(p);
p += (*mb_ptr2len)(p);
}
}