comparison src/spell.h @ 17682:3dbff5d37520 v8.1.1838

patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrare commit https://github.com/vim/vim/commit/08cc374dabd2a02785129fa1c0100f7745c244ad Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 11 22:51:14 2019 +0200 patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrare Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes https://github.com/vim/vim/issues/4291)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Aug 2019 23:00:07 +0200
parents 2dcaa860e3fc
children 6e53d83e021d
comparison
equal deleted inserted replaced
17681:fbdef42903ae 17682:3dbff5d37520
296 SPELL_EXTERN char e_format[] SPELL_INIT(= N_("E759: Format error in spell file")); 296 SPELL_EXTERN char e_format[] SPELL_INIT(= N_("E759: Format error in spell file"));
297 297
298 SPELL_EXTERN spelltab_T spelltab; 298 SPELL_EXTERN spelltab_T spelltab;
299 SPELL_EXTERN int did_set_spelltab; 299 SPELL_EXTERN int did_set_spelltab;
300 300
301 #endif 301 // Values for "what" argument of spell_add_word()
302 #define SPELL_ADD_GOOD 0
303 #define SPELL_ADD_BAD 1
304 #define SPELL_ADD_RARE 2
305 #endif