diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 20:07:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 20:07:16 +0200 |
commit | be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77 (patch) | |
tree | 33ffeaee48b3895c0cca615476a027a27c780cfc /src/nvim/spell.c | |
parent | 54daf022ce989bb8ea34084f947ab85c045b690f (diff) | |
parent | bc13bc154aa574e0bb58a50f2e0ca4570efa57c3 (diff) | |
download | rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.gz rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.bz2 rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.zip |
Merge pull request #25418 from bfredl/no_attr2
refactor(message): remove more "attr" variants
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 38e045a08b..1c7707995f 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -1626,7 +1626,7 @@ static void spell_load_lang(char *lang) lang); do_cmdline_cmd(autocmd_buf); } else { - smsg(_("Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""), + smsg(0, _("Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""), lang, spell_enc(), lang); } } else if (sl.sl_slang != NULL) { @@ -2076,7 +2076,7 @@ char *parse_spelllang(win_T *wp) } else { // This is probably an error. Give a warning and // accept the words anyway. - smsg(_("Warning: region %s not supported"), + smsg(0, _("Warning: region %s not supported"), region); } } else { |