diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-13 18:35:04 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-07-14 21:06:07 +0200 |
commit | fc869da6dc94970e9aa26d51bd605d383f4a4c4e (patch) | |
tree | 4ddaec7ac88341448a6cda315f1030f017822815 /src/nvim/option.c | |
parent | c31bc6ea731567db86cbe91f7c62d89c612cd3ac (diff) | |
download | rneovim-fc869da6dc94970e9aa26d51bd605d383f4a4c4e.tar.gz rneovim-fc869da6dc94970e9aa26d51bd605d383f4a4c4e.tar.bz2 rneovim-fc869da6dc94970e9aa26d51bd605d383f4a4c4e.zip |
refactor(options): delet unused P_VIM flag
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 0a8a60701a..53702cd727 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -233,7 +233,6 @@ typedef struct vimoption { #define P_WAS_SET 0x100U // option has been set/reset #define P_NO_MKRC 0x200U // don't include in :mkvimrc output #define P_VI_DEF 0x400U // Use Vi default for Vim -#define P_VIM 0x800U // Vim option // when option changed, what to display: #define P_RSTAT 0x1000U ///< redraw status lines |