diff src/gui.c @ 13386:bf3de2fd98fa v8.0.1567

patch 8.0.1567: cannot build Win32 GUI without IME commit https://github.com/vim/vim/commit/6e35a11490f1f9061677671220ce4cb73176b44a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 4 21:36:05 2018 +0100 patch 8.0.1567: cannot build Win32 GUI without IME Problem: Cannot build Win32 GUI without IME. (John Marriott) Solution: Adjust when IME_WITHOUT_XIM and HAVE_INPUT_METHOD are defined and use it in a few more places.
author Christian Brabandt <cb@256bit.org>
date Sun, 04 Mar 2018 21:45:05 +0100
parents 6740c499de13
children fa0dcdaec6a3
line wrap: on
line diff
--- a/src/gui.c
+++ b/src/gui.c
@@ -1077,7 +1077,7 @@ gui_update_cursor(
 	gui_undraw_cursor();
 	if (gui.row < 0)
 	    return;
-#ifdef FEAT_MBYTE
+#ifdef HAVE_INPUT_METHOD
 	if (gui.row != gui.cursor_row || gui.col != gui.cursor_col)
 	    im_set_position(gui.row, gui.col);
 #endif
@@ -1135,7 +1135,7 @@ gui_update_cursor(
 	if (id > 0)
 	{
 	    cattr = syn_id2colors(id, &cfg, &cbg);
-#if defined(FEAT_MBYTE) || defined(FEAT_HANGULIN)
+#if defined(HAVE_INPUT_METHOD) || defined(FEAT_HANGULIN)
 	    {
 		static int iid;
 		guicolor_T fg, bg;