mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +00:00
vim-patch:8.1.0779: argument for message functions is inconsistent
Problem: Argument for message functions is inconsistent.
Solution: Make first argument to msg() "char *".
32526b3c18
This commit is contained in:
@@ -2934,7 +2934,7 @@ void spell_suggest(int count)
|
||||
true, need_cap, true);
|
||||
|
||||
if (GA_EMPTY(&sug.su_ga)) {
|
||||
MSG(_("Sorry, no suggestions"));
|
||||
msg(_("Sorry, no suggestions"));
|
||||
} else if (count > 0) {
|
||||
if (count > sug.su_ga.ga_len) {
|
||||
smsg(_("Sorry, only %" PRId64 " suggestions"),
|
||||
|
Reference in New Issue
Block a user