0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

patch 8.2.3961: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move more errors to errors.h.
This commit is contained in:
Bram Moolenaar
2021-12-31 22:49:24 +00:00
parent f1474d801b
commit 436b5adc97
62 changed files with 427 additions and 403 deletions

View File

@@ -190,7 +190,7 @@ f_reltime(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
if (list2proftime(&argvars[0], &res) == FAIL)
{
if (in_vim9script())
emsg(_(e_invarg));
emsg(_(e_invalid_argument));
return;
}
profile_end(&res);
@@ -202,7 +202,7 @@ f_reltime(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
|| list2proftime(&argvars[1], &res) == FAIL)
{
if (in_vim9script())
emsg(_(e_invarg));
emsg(_(e_invalid_argument));
return;
}
profile_sub(&res, &start);
@@ -240,7 +240,7 @@ f_reltimefloat(typval_T *argvars UNUSED, typval_T *rettv)
if (list2proftime(&argvars[0], &tm) == OK)
rettv->vval.v_float = profile_float(&tm);
else if (in_vim9script())
emsg(_(e_invarg));
emsg(_(e_invalid_argument));
# endif
}
# endif
@@ -264,7 +264,7 @@ f_reltimestr(typval_T *argvars UNUSED, typval_T *rettv)
if (list2proftime(&argvars[0], &tm) == OK)
rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
else if (in_vim9script())
emsg(_(e_invarg));
emsg(_(e_invalid_argument));
# endif
}
@@ -842,7 +842,7 @@ f_timer_start(typval_T *argvars, typval_T *rettv)
if (argvars[2].v_type != VAR_DICT
|| (dict = argvars[2].vval.v_dict) == NULL)
{
semsg(_(e_invarg2), tv_get_string(&argvars[2]));
semsg(_(e_invalid_argument_str), tv_get_string(&argvars[2]));
return;
}
if (dict_find(dict, (char_u *)"repeat", -1) != NULL)