# HG changeset patch # User Christian Brabandt # Date 1513544406 -3600 # Node ID 16b2416346143d4ea87aa57982fe4c84e5465c29 # Parent a6d3e2081544d83bb53f58bec7fc536b764d16f6 patch 8.0.1401: cannot build with GTK but without XIM commit https://github.com/vim/vim/commit/cb89c98c264b0fe9fd26e3501eab5a062e57c064 Author: Bram Moolenaar Date: Sun Dec 17 21:54:55 2017 +0100 patch 8.0.1401: cannot build with GTK but without XIM Problem: Cannot build with GTK but without XIM. (Guido) Solution: Adjust #ifdef. (closes https://github.com/vim/vim/issues/2461) diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -1136,7 +1136,7 @@ gui_update_cursor( if (id > 0) { cattr = syn_id2colors(id, &cfg, &cbg); -#if defined(FEAT_MBYTE) || defined(FEAT_HANGULIN) +#if defined(FEAT_XIM) || defined(FEAT_HANGULIN) { static int iid; guicolor_T fg, bg; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1401, +/**/ 1400, /**/ 1399,