diff options
author | Hettomei <itsumo.sibyllin@gmail.com> | 2015-05-08 13:02:05 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-07-17 21:40:37 -0400 |
commit | 031758ad5c2422ddf68bfe747baa922f11418c52 (patch) | |
tree | 1c5846868147f70daf0fafa7c96d90d7c4365b41 /src/nvim/vim.h | |
parent | 1b7dcb2f705f5074f2b60d0b2e33d2a4982dfab2 (diff) | |
download | rneovim-031758ad5c2422ddf68bfe747baa922f11418c52.tar.gz rneovim-031758ad5c2422ddf68bfe747baa922f11418c52.tar.bz2 rneovim-031758ad5c2422ddf68bfe747baa922f11418c52.zip |
Macro cleanup: FEAT_GUI_W32
Diffstat (limited to 'src/nvim/vim.h')
-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 c88a8872f3..e9606a7294 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_W32) && !defined(FEAT_GUI_X11) \ +#if !defined(FEAT_GUI_X11) \ && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MAC) # define mch_errmsg(str) fprintf(stderr, "%s", (str)) # define display_errors() fflush(stderr) |