mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 8.2.4012: error messages are spread out
Problem: Error messages are spread out. Solution: Move the last error messages to errors.h.
This commit is contained in:
@@ -1026,8 +1026,8 @@ ambw_end:
|
||||
if (convert_setup(&input_conv, p_tenc, p_enc) == FAIL
|
||||
|| convert_setup(&output_conv, p_enc, p_tenc) == FAIL)
|
||||
{
|
||||
semsg(_("E950: Cannot convert between %s and %s"),
|
||||
p_tenc, p_enc);
|
||||
semsg(_(e_cannot_convert_between_str_and_str),
|
||||
p_tenc, p_enc);
|
||||
errmsg = e_invalid_argument;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user