summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-04 21:36:05 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-04 21:36:05 +0100
commit6e35a11490f1f9061677671220ce4cb73176b44a (patch)
tree2bca90909b0c22e8e69eaeb1240cf9558de34702
parent8a3bb56230d220b8e1b4dcca517ed95f5341b8c7 (diff)
downloadvim-git-6e35a11490f1f9061677671220ce4cb73176b44a.tar.gz
patch 8.0.1567: cannot build Win32 GUI without IMEv8.0.1567
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.
-rw-r--r--src/gui.c4
-rw-r--r--src/version.c2
-rw-r--r--src/vim.h12
3 files changed, 9 insertions, 9 deletions
diff --git a/src/gui.c b/src/gui.c
index eac4fae68..cc168a815 100644
--- 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;
diff --git a/src/version.c b/src/version.c
index b00217dcd..cbd28eedc 100644
--- a/src/version.c
+++ b/src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1567,
+/**/
1566,
/**/
1565,
diff --git a/src/vim.h b/src/vim.h
index 21574064f..3cad06297 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2118,18 +2118,16 @@ typedef enum {
# define USE_MCH_ERRMSG
#endif
-# if (defined(FEAT_MBYTE_IME) \
- && (!defined(FEAT_GUI_W32) \
- || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME)))) \
- || (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC))
-/* Whether IME is supported when XIM is not used, im_get_status() is defined in
- * mbyte.c. */
+# if defined(FEAT_MBYTE) && defined(FEAT_EVAL) \
+ && ((!defined(FEAT_GUI_W32) \
+ || !(defined(FEAT_MBYTE_IME) || defined(GLOBAL_IME))) \
+ || (defined(MACOS_CONVERT) && !defined(FEAT_GUI_MAC)))
+/* Whether IME is supported by im_get_status() defined in mbyte.c. */
# define IME_WITHOUT_XIM
#endif
#if defined(FEAT_MBYTE) && (defined(FEAT_XIM) \
|| defined(IME_WITHOUT_XIM) \
- || defined(FEAT_GUI_W32) \
|| defined(FEAT_GUI_MAC))
/* im_set_active() is available */
# define HAVE_INPUT_METHOD