comparison src/gui.c @ 536:c1d5993c7d9f

updated for version 7.0152
author vimboss
date Fri, 30 Sep 2005 21:15:37 +0000
parents d50452846776
children 2df7f3a5eb96
comparison
equal deleted inserted replaced
535:792d1b60e546 536:c1d5993c7d9f
2246 # endif 2246 # endif
2247 } 2247 }
2248 /* Draw a composing char on top of the previous char. */ 2248 /* Draw a composing char on top of the previous char. */
2249 if (comping) 2249 if (comping)
2250 { 2250 {
2251 # if !defined(__APPLE_CC__) && !defined(__MRC__) && !defined(TARGET_API_MAC_CARBON) && !defined(FEAT_GUI_W32) 2251 # if (defined(__APPLE_CC__) || defined(__MRC__)) && TARGET_API_MAC_CARBON
2252 gui_mch_draw_string(gui.row, scol - cn, s + i, cl, 2252 /* Carbon ATSUI autodraws composing char over previous char */
2253 gui_mch_draw_string(gui.row, scol, s + i, cl,
2253 draw_flags | DRAW_TRANSP); 2254 draw_flags | DRAW_TRANSP);
2254 # else 2255 # else
2255 /* Carbon ATSUI autodraws composing char over previous char */ 2256 gui_mch_draw_string(gui.row, scol - cn, s + i, cl,
2256 gui_mch_draw_string(gui.row, scol, s + i, cl,
2257 draw_flags | DRAW_TRANSP); 2257 draw_flags | DRAW_TRANSP);
2258 # endif 2258 # endif
2259 start = i + cl; 2259 start = i + cl;
2260 } 2260 }
2261 } 2261 }