diff options
author | Hettomei <itsumo.sibyllin@gmail.com> | 2015-05-08 14:41:02 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-07-17 21:40:39 -0400 |
commit | db9bcadb0585b1a94031350263d185e7974bf0b1 (patch) | |
tree | b490c1d5ea8571444d43603cd03986f466d25021 /src | |
parent | bd819aaed0f72b43b553ba5b5e34df7fcb3f600c (diff) | |
download | rneovim-db9bcadb0585b1a94031350263d185e7974bf0b1.tar.gz rneovim-db9bcadb0585b1a94031350263d185e7974bf0b1.tar.bz2 rneovim-db9bcadb0585b1a94031350263d185e7974bf0b1.zip |
Macro cleanup: FEAT_GUI_X11
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 5e424f5375..446d1e0265 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -338,7 +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_MAC) +#if !defined(FEAT_GUI_MAC) # define mch_errmsg(str) fprintf(stderr, "%s", (str)) # define display_errors() fflush(stderr) # define mch_msg(str) printf("%s", (str)) |