From b6ce21acbeb60a1fe05e017736b5975084330975 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Jun 2009 18:31:06 +0000 Subject: [PATCH] [7.2.218] Cannot build GTK with hangul_input feature. (Dominique Pelle) Problem: Cannot build GTK with hangul_input feature. (Dominique Pelle) Solution: Adjuste #ifdef. (SungHyun Nam) Patch 7.2.218 --- src/gui.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui.c b/src/gui.c index c8ea70e0..e42cb404 100644 --- a/src/gui.c +++ b/src/gui.c @@ -959,7 +959,7 @@ gui_update_cursor(force, clear_selection) guicolor_T fg, bg; if ( -# ifdef HAVE_GTK2 +# if defined(HAVE_GTK2) && !defined(FEAT_HANGULIN) preedit_get_status() # else im_get_status() diff --git a/src/version.c b/src/version.c index a1fde9db..6017cfd3 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 218, +/**/ 217, /**/ 216, -- 2.11.4.GIT