0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -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:
Bram Moolenaar
2022-01-05 20:24:39 +00:00
parent bb8cac56d9
commit d82a47dd04
34 changed files with 357 additions and 156 deletions

View File

@@ -1462,7 +1462,7 @@ do_set(
}
if ((flags & P_MLE) && !p_mle)
{
errmsg = N_("E992: Not allowed in a modeline when 'modelineexpr' is off");
errmsg = N_(e_not_allowed_in_modeline_when_modelineexpr_is_off);
goto skip;
}
#ifdef FEAT_DIFF
@@ -2822,7 +2822,7 @@ set_bool_option(
&& curbuf->b_term != NULL && !term_is_finished(curbuf))))
{
curbuf->b_p_ma = FALSE;
return N_("E946: Cannot make a terminal with running job modifiable");
return N_(e_cannot_make_terminal_with_running_job_modifiable);
}
# endif
redraw_titles();
@@ -3223,7 +3223,7 @@ set_bool_option(
!has_vtp_working())
{
p_tgc = 0;
return N_("E954: 24-bit colors are not supported on this environment");
return N_(e_24_bit_colors_are_not_supported_on_this_environment);
}
if (is_term_win32())
swap_tcap();