commit | dd5893be34649482ed62525430fb8baa1ec273ce | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jan 20 21:32:54 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jan 20 21:32:54 2022 +0000 |
tree | b53ae04f33ac4c243c48a4650947d0792aa91c6c | |
parent | e615db06046312e74886fa1ef98feb5a9db2a7c3 [diff] [blame] |
patch 8.2.4167: Vim9: error message for old style import Problem: Vim9: error message for old style import. Solution: Use another error message. Add a test.
diff --git a/src/evalvars.c b/src/evalvars.c index 15999bc..ca7e7e8 100644 --- a/src/evalvars.c +++ b/src/evalvars.c
@@ -2711,7 +2711,7 @@ else { if (flags & EVAL_VAR_VERBOSE) - emsg(_(e_import_as_name_not_supported_here)); + semsg(_(e_expected_dot_after_name_str), name); ret = FAIL; } }