mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 03:28:33 +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:
@@ -7848,10 +7848,10 @@ static void nv_esc(cmdarg_T *cap)
|
||||
&& !VIsual_active
|
||||
&& no_reason) {
|
||||
if (anyBufIsChanged()) {
|
||||
MSG(_("Type :qa! and press <Enter> to abandon all changes"
|
||||
msg(_("Type :qa! and press <Enter> to abandon all changes"
|
||||
" and exit Nvim"));
|
||||
} else {
|
||||
MSG(_("Type :qa and press <Enter> to exit Nvim"));
|
||||
msg(_("Type :qa and press <Enter> to exit Nvim"));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user