diff options
author | Martin Tournoij <martin@arp242.net> | 2022-10-13 22:12:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-13 22:12:15 +0100 |
commit | ba43e76fcd5b2da57dbaa4d9a555793fe8ac344e (patch) | |
tree | 46d248575c130e6c338dc0aac5f66eabe2c2fef4 /src/optiondefs.h | |
parent | 856c5d2bc7c3864f8b63a0ab3e376d5c5e51f1d5 (diff) | |
download | vim-git-ba43e76fcd5b2da57dbaa4d9a555793fe8ac344e.tar.gz |
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/optiondefs.h')
-rw-r--r-- | src/optiondefs.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/optiondefs.h b/src/optiondefs.h index f9e10ae40..db85a3989 100644 --- a/src/optiondefs.h +++ b/src/optiondefs.h @@ -2060,11 +2060,7 @@ static struct vimoption options[] = #endif SCTX_INIT}, {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT, -#ifdef FEAT_CMDL_INFO (char_u *)&p_ru, PV_NONE, -#else - (char_u *)NULL, PV_NONE, -#endif {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT|P_MLE, #ifdef FEAT_STL_OPT @@ -2224,11 +2220,7 @@ static struct vimoption options[] = #endif {(char_u *)"", (char_u *)0L} SCTX_INIT}, {"showcmd", "sc", P_BOOL|P_VIM, -#ifdef FEAT_CMDL_INFO (char_u *)&p_sc, PV_NONE, -#else - (char_u *)NULL, PV_NONE, -#endif {(char_u *)FALSE, #ifdef UNIX (char_u *)FALSE |