diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-14 17:14:30 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-14 17:23:51 -0500 |
commit | 35874208b86d52b22476ce2a7770b5317fea8694 (patch) | |
tree | 50346281d68fe5a59d38ed5c188b7fec182c48e3 /src/nvim/spell_defs.h | |
parent | 78c380f947445d327d33fa068c91a3bb2370c35c (diff) | |
download | rneovim-35874208b86d52b22476ce2a7770b5317fea8694.tar.gz rneovim-35874208b86d52b22476ce2a7770b5317fea8694.tar.bz2 rneovim-35874208b86d52b22476ce2a7770b5317fea8694.zip |
globals: eliminate "has_mbyte" macro
"has_mbyte" always evaluates to "true".
Continue dead code removal, started in https://github.com/neovim/neovim/pull/13275.
Diffstat (limited to 'src/nvim/spell_defs.h')
-rw-r--r-- | src/nvim/spell_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spell_defs.h b/src/nvim/spell_defs.h index 05667f060e..e2c9ab7ae8 100644 --- a/src/nvim/spell_defs.h +++ b/src/nvim/spell_defs.h @@ -162,7 +162,7 @@ struct slang_S { bool sl_collapse; // SAL collapse_result bool sl_rem_accents; // SAL remove_accents bool sl_sofo; // SOFOFROM and SOFOTO instead of SAL items: - // "sl_sal_first" maps chars, when has_mbyte + // "sl_sal_first" maps chars // "sl_sal" is a list of wide char lists. garray_T sl_repsal; // list of fromto_T entries from REPSAL lines int16_t sl_repsal_first[256]; // sl_rep_first for REPSAL lines |