aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/eval.c3
-rw-r--r--src/nvim/normal.c3
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