diff options
author | Hettomei <itsumo.sibyllin@gmail.com> | 2015-05-08 13:06:53 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-07-17 21:40:38 -0400 |
commit | 6d937315b6719edc841a399b71c47f329e19124f (patch) | |
tree | 8315668c705f886be799f7f6aeafc95647f84f05 | |
parent | 031758ad5c2422ddf68bfe747baa922f11418c52 (diff) | |
download | rneovim-6d937315b6719edc841a399b71c47f329e19124f.tar.gz rneovim-6d937315b6719edc841a399b71c47f329e19124f.tar.bz2 rneovim-6d937315b6719edc841a399b71c47f329e19124f.zip |
Macro cleanup: FEAT_GUI_MOTIF
-rw-r--r-- | src/nvim/eval.c | 3 | ||||
-rw-r--r-- | src/nvim/normal.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 40727cf68b..0a30c90b69 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -9936,8 +9936,7 @@ static void f_has(typval_T *argvars, typval_T *rettv) #endif "arabic", "autocmd", -#if defined(FEAT_BROWSE) && (defined(USE_FILE_CHOOSER) \ - || defined(FEAT_GUI_MOTIF)) +#if defined(FEAT_BROWSE) && defined(USE_FILE_CHOOSER) "browsefilter", #endif "byte_offset", diff --git a/src/nvim/normal.c b/src/nvim/normal.c index b66bc31b74..514fc5c68f 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -2105,8 +2105,7 @@ do_mouse ( * NOTE: Ignore right button down and drag mouse events. * Windows only shows the popup menu on the button up event. */ -#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \ - || defined(FEAT_GUI_MAC) +#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) if (!is_click) return false; #endif |