0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.0152

This commit is contained in:
Bram Moolenaar
2005-09-30 21:15:37 +00:00
parent 4effc80a8c
commit f25fd51b89
5 changed files with 20 additions and 7 deletions

View File

@@ -2248,13 +2248,13 @@ gui_outstr_nowrap(s, len, flags, fg, bg, back)
/* Draw a composing char on top of the previous char. */
if (comping)
{
# if !defined(__APPLE_CC__) && !defined(__MRC__) && !defined(TARGET_API_MAC_CARBON) && !defined(FEAT_GUI_W32)
gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
draw_flags | DRAW_TRANSP);
# else
# if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
/* Carbon ATSUI autodraws composing char over previous char */
gui_mch_draw_string(gui.row, scol, s + i, cl,
draw_flags | DRAW_TRANSP);
# else
gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
draw_flags | DRAW_TRANSP);
# endif
start = i + cl;
}