From 0c54dc55284ec3f9ad914db3da484464161e9c09 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Sun, 1 Nov 2015 14:32:42 -0500 Subject: Remove useless FEAT_BROWSE ifdef The only thing this affected was the return value of has('browsefilter'). --- config/config.h.in | 1 - src/nvim/eval.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/config/config.h.in b/config/config.h.in index f8a795327f..7d901180b4 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -54,7 +54,6 @@ #cmakedefine UNIX #cmakedefine USE_FNAME_CASE -#define FEAT_BROWSE #define FEAT_CSCOPE #ifndef UNIT_TESTING diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 7685e422fc..4cb3f58dbb 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -10556,9 +10556,7 @@ static void f_has(typval_T *argvars, typval_T *rettv) #endif "arabic", "autocmd", -#ifdef FEAT_BROWSE "browsefilter", -#endif "byte_offset", "cindent", "cmdline_compl", -- cgit