comparison src/errors.h @ 25751:fc8046209eaa v8.2.3411

patch 8.2.3411: Vim9: crash when using base name of import Commit: https://github.com/vim/vim/commit/6853c38b78fe5333f95470e1ff3ca6741247e600 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 7 22:12:19 2021 +0200 patch 8.2.3411: Vim9: crash when using base name of import Problem: Vim9: crash when using base name of import. (Naohiro Ono) Solution: Check the import flags. (closes https://github.com/vim/vim/issues/8843)
author Bram Moolenaar <Bram@vim.org>
date Tue, 07 Sep 2021 22:15:03 +0200
parents 99fbffe75217
children 33ebec729787
comparison
equal deleted inserted replaced
25750:06e0400d9d69 25751:fc8046209eaa
652 INIT(= N_("E1233: exists_compiled() can only be used in a :def function")); 652 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
653 EXTERN char e_legacy_must_be_followed_by_command[] 653 EXTERN char e_legacy_must_be_followed_by_command[]
654 INIT(= N_("E1234: legacy must be followed by a command")); 654 INIT(= N_("E1234: legacy must be followed by a command"));
655 EXTERN char e_function_reference_is_not_set[] 655 EXTERN char e_function_reference_is_not_set[]
656 INIT(= N_("E1235: Function reference is not set")); 656 INIT(= N_("E1235: Function reference is not set"));
657 EXTERN char e_cannot_use_str_itself_it_is_imported_with_star[]
658 INIT(= N_("E1236: Cannot use %s itself, it is imported with '*'"));