summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-13 22:47:35 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-13 22:47:35 +0200
commitbc4c505166dc82911553206bb0c2133c6ac94aa1 (patch)
tree14a6624ace74cef5d79c55c818012042fef3d03e /src/ex_docmd.c
parentcdd70f09a5340c3d7ae873f1aaaf9847f27410cc (diff)
patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444
Problem: Error messages are spread out and names can be confusing. Solution: Start moving error messages to a separate file and use clear names.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 85d4df6901..87ae5f9997 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1789,7 +1789,7 @@ do_one_cmd(
--ea.cmd;
else if (ea.cmd > cmd)
{
- emsg(_(e_colon_required));
+ emsg(_(e_colon_required_before_a_range));
goto doend;
}
p = find_ex_command(&ea, NULL, lookup_scriptvar, NULL);