diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-11-06 10:19:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 10:19:28 +0100 |
commit | c0f222d55b780831382a4034cec5c643d0504f58 (patch) | |
tree | fe16c8cf648a058889de60c8e033b3e201053b11 /src/nvim/optionstr.c | |
parent | 04274a417358a4eb9b3b3d1f7e1ea4a4b4419c5c (diff) | |
parent | cbc9a03f58394bbb85bbe70c48856cc1efca4ab7 (diff) | |
download | rneovim-c0f222d55b780831382a4034cec5c643d0504f58.tar.gz rneovim-c0f222d55b780831382a4034cec5c643d0504f58.tar.bz2 rneovim-c0f222d55b780831382a4034cec5c643d0504f58.zip |
Merge pull request #31062 from famiu/refactor/options/ff_macro
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() |