diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-16 20:56:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-16 20:56:57 +0000 |
commit | e124204c4f8ea8b4fe5357b7613092a7acb5feb8 (patch) | |
tree | 8a049a292b17314710048a1b17625416c2bfc8d6 /src/misc2.c | |
parent | 94c785d235dccacf6cdf38c5903115b61ca8a981 (diff) | |
download | vim-git-e124204c4f8ea8b4fe5357b7613092a7acb5feb8.tar.gz |
patch 8.2.3830: error messages are spread outv8.2.3830
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc2.c b/src/misc2.c index 940708749..4400d4aa5 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -1780,7 +1780,7 @@ call_shell(char_u *cmd, int opt) if (*p_sh == NUL) { - emsg(_(e_shellempty)); + emsg(_(e_shell_option_is_empty)); retval = -1; } else |