comparison src/errors.h @ 28790:a161c262e947 v8.2.4919

patch 8.2.4919: can add invalid bytes with :spellgood Commit: https://github.com/vim/vim/commit/7c824682d2028432ee082703ef0ab399867a089b Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 8 22:32:58 2022 +0100 patch 8.2.4919: can add invalid bytes with :spellgood Problem: Can add invalid bytes with :spellgood. Solution: Check for a valid word string.
author Bram Moolenaar <Bram@vim.org>
date Sun, 08 May 2022 23:45:02 +0200
parents 3632627d5c81
children caaa99d1250a
comparison
equal deleted inserted replaced
28789:be28873d2f74 28790:a161c262e947
3271 EXTERN char e_stray_closing_curly_str[] 3271 EXTERN char e_stray_closing_curly_str[]
3272 INIT(= N_("E1278: Stray '}' without a matching '{': %s")); 3272 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3273 EXTERN char e_missing_close_curly_str[] 3273 EXTERN char e_missing_close_curly_str[]
3274 INIT(= N_("E1279: Missing '}': %s")); 3274 INIT(= N_("E1279: Missing '}': %s"));
3275 #endif 3275 #endif
3276 #ifdef FEAT_SPELL
3277 EXTERN char e_illegal_character_in_word[]
3278 INIT(= N_("E1280: Illegal character in word"));
3279 #endif