changeset 13052:16b241634614 v8.0.1401

patch 8.0.1401: cannot build with GTK but without XIM commit https://github.com/vim/vim/commit/cb89c98c264b0fe9fd26e3501eab5a062e57c064 Author: Bram Moolenaar <Bram@vim.org> 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)
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Dec 2017 22:00:06 +0100
parents a6d3e2081544
children 472e2cba236d
files src/gui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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,