diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-13 22:47:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-13 22:47:35 +0200 |
commit | bc4c505166dc82911553206bb0c2133c6ac94aa1 (patch) | |
tree | 14a6624ace74cef5d79c55c818012042fef3d03e /src/ex_docmd.c | |
parent | cdd70f09a5340c3d7ae873f1aaaf9847f27410cc (diff) | |
download | vim-git-bc4c505166dc82911553206bb0c2133c6ac94aa1.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 85d4df690..87ae5f999 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); |