summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-29 16:04:08 +0200
committerBram Moolenaar <Bram@vim.org>2018-03-29 16:04:08 +0200
commit0c72fe4ed8430db41f43c5878e6ee60265dc49e9 (patch)
tree1ed985dcd639fe0d976103599009ff835cd7043a /src/feature.h
parentcd43effecab02c6c28b1c4a3a14f91b8c3f26c0d (diff)
patch 8.0.1650: too many #ifdefsv8.0.1650
Problem: Too many #ifdefs. Solution: Graduate FEAT_LISTCMDS, no reason to leave out buffer commands.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/feature.h b/src/feature.h
index 9754d0bc6a..5b915b838c 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -101,15 +101,6 @@
*/
/*
- * +listcmds Vim commands for the buffer list and the argument
- * list. Without this there is no ":buffer" ":bnext",
- * ":bdel", ":argdelete", etc.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_LISTCMDS
-#endif
-
-/*
* +cmdhist Command line history.
*/
#ifdef FEAT_SMALL
@@ -1252,10 +1243,9 @@
#endif
/*
- * The Netbeans feature requires +listcmds and +eval.
+ * The Netbeans feature requires +eval.
*/
-#if (!defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \
- && defined(FEAT_NETBEANS_INTG)
+#if !defined(FEAT_EVAL) && defined(FEAT_NETBEANS_INTG)
# undef FEAT_NETBEANS_INTG
#endif