diff options
Diffstat (limited to 'src/nvim/spellsuggest.c')
-rw-r--r-- | src/nvim/spellsuggest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/spellsuggest.c b/src/nvim/spellsuggest.c index d1f63e537b..938e8cec8f 100644 --- a/src/nvim/spellsuggest.c +++ b/src/nvim/spellsuggest.c @@ -566,7 +566,7 @@ void spell_suggest(int count) } vim_snprintf(IObuff, IOSIZE, "%2d", i + 1); if (cmdmsg_rl) { - rl_mirror_ascii(IObuff); + rl_mirror_ascii(IObuff, NULL); } msg_puts(IObuff); @@ -592,7 +592,7 @@ void spell_suggest(int count) } if (cmdmsg_rl) { // Mirror the numbers, but keep the leading space. - rl_mirror_ascii(IObuff + 1); + rl_mirror_ascii(IObuff + 1, NULL); } msg_advance(30); msg_puts(IObuff); |