aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorHettomei <itsumo.sibyllin@gmail.com>2015-05-08 14:40:10 +0200
committerJustin M. Keyes <justinkz@gmail.com>2015-07-17 21:40:39 -0400
commitbd819aaed0f72b43b553ba5b5e34df7fcb3f600c (patch)
treecd6aa4acc8f0a83aede9aaad9846d8b9c9fd0d71 /src/nvim/vim.h
parent5360324974be724f8485aec39f75aeb06a58cb04 (diff)
downloadrneovim-bd819aaed0f72b43b553ba5b5e34df7fcb3f600c.tar.gz
rneovim-bd819aaed0f72b43b553ba5b5e34df7fcb3f600c.tar.bz2
rneovim-bd819aaed0f72b43b553ba5b5e34df7fcb3f600c.zip
Macro cleanup: FEAT_GUI_GTK
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index e9606a7294..5e424f5375 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -338,8 +338,7 @@ enum {
* functions of these names. The declarations would break if the defines had
* been seen at that stage. But it must be before globals.h, where error_ga
* is declared. */
-#if !defined(FEAT_GUI_X11) \
- && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MAC)
+#if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_MAC)
# define mch_errmsg(str) fprintf(stderr, "%s", (str))
# define display_errors() fflush(stderr)
# define mch_msg(str) printf("%s", (str))