summaryrefslogtreecommitdiffstats
path: root/src/terminal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
commit9a846fbaa569b3690d70606f2a86e97f77a05496 (patch)
treecbe5304927fe21586593c94342e4f023aa3e0837 /src/terminal.c
parentb34689010a587e85ff724051f276513a15c634d0 (diff)
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/terminal.c')
-rw-r--r--src/terminal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.c b/src/terminal.c
index ca5b835dcf..d974c11322 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -935,7 +935,7 @@ ex_terminal(exarg_T *eap)
vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
cmd = newcmd;
# else
- emsg(_("E279: Sorry, ++shell is not supported on this system"));
+ emsg(_(e_sorry_plusplusshell_not_supported_on_this_system));
goto theend;
# endif
#endif