diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
commit | 74409f62790a93daf0965c71da01ff76aa0fa5a5 (patch) | |
tree | ece55c806dc6fe451d24af66008ae1444d81d73d /src/userfunc.c | |
parent | 56200eed62e59ad831f6564dcafe346e6f97ac20 (diff) | |
download | vim-git-74409f62790a93daf0965c71da01ff76aa0fa5a5.tar.gz |
patch 8.2.3970: error messages are spread outv8.2.3970
Problem: Error messages are spread out.
Solution: Move more errors to errors.h.
Diffstat (limited to 'src/userfunc.c')
-rw-r--r-- | src/userfunc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/userfunc.c b/src/userfunc.c index 0d365ceed..eb2ee1c07 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -1127,7 +1127,7 @@ lambda_function_body( if (!ends_excmd2(*arg, skipwhite(*arg + 1))) { - semsg(_(e_trailing_arg), *arg + 1); + semsg(_(e_trailing_characters_str), *arg + 1); return FAIL; } @@ -4148,7 +4148,7 @@ define_function(exarg_T *eap, char_u *name_arg, char_u **line_to_free) { if (!ends_excmd(*skipwhite(p))) { - semsg(_(e_trailing_arg), p); + semsg(_(e_trailing_characters_str), p); goto ret_free; } set_nextcmd(eap, p); @@ -4364,7 +4364,7 @@ define_function(exarg_T *eap, char_u *name_arg, char_u **line_to_free) && (vim9script || eap->cmdidx == CMD_def)) && !eap->skip && !did_emsg) - semsg(_(e_trailing_arg), p); + semsg(_(e_trailing_characters_str), p); /* * Read the body of the function, until "}", ":endfunction" or ":enddef" is @@ -4899,7 +4899,7 @@ ex_delfunction(exarg_T *eap) if (!ends_excmd(*skipwhite(p))) { vim_free(name); - semsg(_(e_trailing_arg), p); + semsg(_(e_trailing_characters_str), p); return; } set_nextcmd(eap, p); @@ -5262,7 +5262,7 @@ ex_call(exarg_T *eap) if (!failed && !aborting()) { emsg_severe = TRUE; - semsg(_(e_trailing_arg), arg); + semsg(_(e_trailing_characters_str), arg); } } else |