summaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-06-26 05:38:18 +0200
committerBram Moolenaar <Bram@vim.org>2010-06-26 05:38:18 +0200
commit0eda7ac7f897433c9d346743bf38fcd291673070 (patch)
tree90a05f07c0c73e33b1097fab8f73d57a019027df /src/feature.h
parent51f53dfe17617792a0275b19f27b50f98b0db764 (diff)
downloadvim-git-0eda7ac7f897433c9d346743bf38fcd291673070.tar.gz
Change remaining HAVE_GTK2 to FEAT_GUI_GTK.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/feature.h b/src/feature.h
index 7a38b853d..e31e4630d 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -640,7 +640,7 @@
* Disabled for EBCDIC:
* Multibyte support doesn't work on z/OS Unix currently.
*/
-#if (defined(FEAT_BIG) || defined(HAVE_GTK2) || defined(FEAT_ARABIC)) \
+#if (defined(FEAT_BIG) || defined(FEAT_GUI_GTK) || defined(FEAT_ARABIC)) \
&& !defined(FEAT_MBYTE) && !defined(WIN16) \
&& SIZEOF_INT >= 4 && !defined(EBCDIC)
# define FEAT_MBYTE
@@ -693,7 +693,7 @@
# define ESC_CHG_TO_ENG_MODE /* if defined, when ESC pressed,
* turn to english mode
*/
-# if !defined(FEAT_XFONTSET) && defined(HAVE_X11) && !defined(HAVE_GTK2)
+# if !defined(FEAT_XFONTSET) && defined(HAVE_X11) && !defined(FEAT_GUI_GTK)
# define FEAT_XFONTSET /* Hangul input requires xfontset */
# endif
# if defined(FEAT_XIM) && !defined(LINT)
@@ -710,7 +710,7 @@
* +xfontset X fontset support. For outputting wide characters.
*/
#ifndef FEAT_XFONTSET
-# if defined(FEAT_MBYTE) && defined(HAVE_X11) && !defined(HAVE_GTK2)
+# if defined(FEAT_MBYTE) && defined(HAVE_X11) && !defined(FEAT_GUI_GTK)
# define FEAT_XFONTSET
# else
/* # define FEAT_XFONTSET */