summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorMartin Tournoij <martin@arp242.net>2022-10-13 22:12:15 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-13 22:12:15 +0100
commitba43e76fcd5b2da57dbaa4d9a555793fe8ac344e (patch)
tree46d248575c130e6c338dc0aac5f66eabe2c2fef4 /src/feature.h
parent856c5d2bc7c3864f8b63a0ab3e376d5c5e51f1d5 (diff)
patch 9.0.0747: too many #ifdefsv9.0.0747
Problem: Too many #ifdefs. Solution: Gradudate the +cmdline_info feature. (Martin Tournoij, closes #11330)
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/feature.h b/src/feature.h
index 275fbe397c..948539b1b3 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -126,6 +126,7 @@
* +builtin_terms all builtin termcap entries included
* +float Floating point variables.
* +cmdwin Command line window.
+ * +cmdline_info 'showcmd' and 'ruler' options.
*
* Obsolete:
* +tag_old_static Old style static tags: "file:tag file ..".
@@ -179,13 +180,6 @@
#endif
/*
- * +cmdline_info 'showcmd' and 'ruler' options.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_CMDL_INFO
-#endif
-
-/*
* +linebreak 'showbreak', 'breakat' and 'linebreak' options.
* Also 'numberwidth'.
*/
@@ -324,9 +318,6 @@
*/
#ifdef FEAT_NORMAL
# define FEAT_STL_OPT
-# ifndef FEAT_CMDL_INFO
-# define FEAT_CMDL_INFO // 'ruler' is required for 'statusline'
-# endif
#endif
/*