comparison src/mbyte.c @ 2250:1bac28a53fae vim73

Add the conceal patch from Vince Negri.
author Bram Moolenaar <bram@vim.org>
date Sat, 05 Jun 2010 23:22:07 +0200
parents 54605ada811b
children e4d849f4df03
comparison
equal deleted inserted replaced
2249:6d3d35ff2c2b 2250:1bac28a53fae
5220 return; 5220 return;
5221 5221
5222 /* If 'imdisable' is set, XIM is never active. */ 5222 /* If 'imdisable' is set, XIM is never active. */
5223 if (p_imdisable) 5223 if (p_imdisable)
5224 active = FALSE; 5224 active = FALSE;
5225 #if !defined (FEAT_GUI_GTK) 5225 #if !defined(FEAT_GUI_GTK)
5226 else if (input_style & XIMPreeditPosition) 5226 else if (input_style & XIMPreeditPosition)
5227 /* There is a problem in switching XIM off when preediting is used, 5227 /* There is a problem in switching XIM off when preediting is used,
5228 * and it is not clear how this can be solved. For now, keep XIM on 5228 * and it is not clear how this can be solved. For now, keep XIM on
5229 * all the time, like it was done in Vim 5.8. */ 5229 * all the time, like it was done in Vim 5.8. */
5230 active = TRUE; 5230 active = TRUE;