diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 15:52:27 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-29 15:55:45 +0200 |
commit | b07fd0e988581f6b9c620bcfc27a068ee61242c1 (patch) | |
tree | 20d0c12d3ca0a15f839223a973423f01708c0025 /src/nvim/spellfile.c | |
parent | af7d317f3ff31d5ac5d8724b5057a422e1451b54 (diff) | |
download | rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.tar.gz rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.tar.bz2 rneovim-b07fd0e988581f6b9c620bcfc27a068ee61242c1.zip |
refactor(message): msg_outtrans_long_len_attr -> msg_outtrans_long
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r-- | src/nvim/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index 379342df03..1d93fe4cff 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -3179,7 +3179,7 @@ static int spell_read_dic(spellinfo_T *spin, char *fname, afffile_T *affile) _("line %6d, word %6ld - %s"), lnum, spin->si_foldwcount + spin->si_keepwcount, w); msg_start(); - msg_outtrans_long_attr(message, 0); + msg_outtrans_long(message, 0); msg_clr_eos(); msg_didout = false; msg_col = 0; |