diff options
author | Famiu Haque <famiuhaque@proton.me> | 2024-11-03 16:36:26 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@proton.me> | 2024-11-05 02:36:51 +0600 |
commit | cbc9a03f58394bbb85bbe70c48856cc1efca4ab7 (patch) | |
tree | 74560c2f8f05818f10ce01d8febba3c5ee250eae /src/nvim/optionstr.c | |
parent | 079e5f4f9b67a5aa2c1b481ce78711bf8c76caea (diff) | |
download | rneovim-cbc9a03f58394bbb85bbe70c48856cc1efca4ab7.tar.gz rneovim-cbc9a03f58394bbb85bbe70c48856cc1efca4ab7.tar.bz2 rneovim-cbc9a03f58394bbb85bbe70c48856cc1efca4ab7.zip |
refactor(options): remove fileformat macros
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 48423a1779..af2b09513b 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -84,7 +84,7 @@ static char *(p_dip_values[]) = { "filler", "context:", "iblank", "icase", "indent-heuristic", "linematch:", "algorithm:", NULL }; static char *(p_dip_algorithm_values[]) = { "myers", "minimal", "patience", "histogram", NULL }; static char *(p_nf_values[]) = { "bin", "octal", "hex", "alpha", "unsigned", "blank", NULL }; -static char *(p_ff_values[]) = { FF_UNIX, FF_DOS, FF_MAC, NULL }; +static char *(p_ff_values[]) = { "unix", "dos", "mac", NULL }; static char *(p_cb_values[]) = { "unnamed", "unnamedplus", NULL }; static char *(p_cmp_values[]) = { "internal", "keepascii", NULL }; // Note: Keep this in sync with fill_culopt_flags() |