0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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.
This commit is contained in:
Bram Moolenaar
2022-01-20 21:32:54 +00:00
parent e615db0604
commit dd5893be34
4 changed files with 17 additions and 3 deletions

View File

@@ -2711,7 +2711,7 @@ eval_variable(
else
{
if (flags & EVAL_VAR_VERBOSE)
emsg(_(e_import_as_name_not_supported_here));
semsg(_(e_expected_dot_after_name_str), name);
ret = FAIL;
}
}