summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-21 22:20:33 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-21 22:20:33 +0200
commitd8e44476d84b5f0cc8c4de080a47a3a9af547028 (patch)
treec45296f474fb015dc94cedc81238377efc8e55b0 /src/ex_cmds.c
parent05bd9785fd0fd0102ab64554307bff0ec0ae34c1 (diff)
patch 8.2.3197: error messages are spread outv8.2.3197
Problem: Error messages are spread out. Solution: Move a few more error messages to errors.h.
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 513306bb31..d9ec4a44b3 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -3596,7 +3596,7 @@ check_secure(void)
*/
if (sandbox != 0)
{
- emsg(_(e_sandbox));
+ emsg(_(e_not_allowed_in_sandbox));
return TRUE;
}
#endif