summaryrefslogtreecommitdiff
path: root/src/evalfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-26 16:41:14 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-26 16:41:14 +0100
commit074fbd413172edc6f4936296a28bf8fd5cdfa38b (patch)
tree1c1f0e8682516840548e2b317e4a929c53ff9250 /src/evalfunc.c
parentc361842f1479a7f7f3e65bfb0e188f2e5d38336e (diff)
downloadvim-git-074fbd413172edc6f4936296a28bf8fd5cdfa38b.tar.gz
patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278
Problem: The +wildignore feature is nearly always available. Solution: Graduate +wildignore for consistency.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r--src/evalfunc.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c
index b3084f335..a41e6758a 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -6260,13 +6260,7 @@ f_has(typval_T *argvars, typval_T *rettv)
0
#endif
},
- {"wildignore",
-#ifdef FEAT_WILDIGN
- 1
-#else
- 0
-#endif
- },
+ {"wildignore", 1},
{"wildmenu",
#ifdef FEAT_WILDMENU
1