From f25fd51b89bb31e8adb9ad055ec0b617ee9d319e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 30 Sep 2005 21:15:37 +0000 Subject: updated for version 7.0152 --- src/gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/gui.c b/src/gui.c index 9a465f494..9135992cc 100644 --- a/src/gui.c +++ b/src/gui.c @@ -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; } -- cgit v1.2.1