diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-07-21 22:20:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-07-21 22:20:33 +0200 |
commit | d8e44476d84b5f0cc8c4de080a47a3a9af547028 (patch) | |
tree | c45296f474fb015dc94cedc81238377efc8e55b0 /src/ex_docmd.c | |
parent | 05bd9785fd0fd0102ab64554307bff0ec0ae34c1 (diff) | |
download | vim-git-d8e44476d84b5f0cc8c4de080a47a3a9af547028.tar.gz |
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_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 1efefb1fb..c1d0295f4 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2112,7 +2112,7 @@ do_one_cmd( if (sandbox != 0 && !(ea.argt & EX_SBOXOK)) { // Command not allowed in sandbox. - errormsg = _(e_sandbox); + errormsg = _(e_not_allowed_in_sandbox); goto doend; } #endif |