diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-16 15:43:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 15:43:25 +0800 |
commit | 08abb64680c0fb6d31546be22686db4997564b9c (patch) | |
tree | aea29316cc014f8be609d96abed6726176f90332 /src | |
parent | 0bbccf7c5f4f13b57c027d734dc5086c15d0abda (diff) | |
parent | 7e5c5b4d853b05eee04bc01f2b5e0571d662f9c7 (diff) | |
download | rneovim-08abb64680c0fb6d31546be22686db4997564b9c.tar.gz rneovim-08abb64680c0fb6d31546be22686db4997564b9c.tar.bz2 rneovim-08abb64680c0fb6d31546be22686db4997564b9c.zip |
Merge pull request #29741 from zeertzjq/vim-8.2.1651
vim-patch:8.2.{1651,1659}
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/spellfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index ddeab218e1..ae8c243486 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -4105,8 +4105,8 @@ static void wordtree_compress(spellinfo_T *spin, wordnode_T *root, const char *n perc = (tot - n) * 100 / tot; } vim_snprintf(IObuff, IOSIZE, - _("Compressed %s of %d nodes; %d (%ld%%) remaining"), - name, tot, tot - n, perc); + _("Compressed %s: %d of %d nodes; %d (%ld%%) remaining"), + name, n, tot, tot - n, perc); spell_message(spin, IObuff); } #ifdef SPELL_PRINTTREE |