0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0044

This commit is contained in:
Bram Moolenaar
2005-01-25 21:57:23 +00:00
parent 281bdcec60
commit 9d75c83f8f
8 changed files with 33 additions and 14 deletions

View File

@@ -5430,11 +5430,13 @@ xim_get_status_area_height()
#ifdef FEAT_GUI_GTK
if (xim_input_style & (int)GDK_IM_STATUS_AREA)
return gui.char_height;
#elif defined FEAT_GUI_KDE
/* always return zero? */
#else
# if defined FEAT_GUI_KDE
/* always return zero? */
# else
if (status_area_enabled)
return gui.char_height;
# endif
#endif
return 0;
}