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

patch 9.0.1249: cannot export an abstract class

Problem:    Cannot export an abstract class. (Ernie Rael)
Solution:   Add the EX_EXPORT flag to :abstract. (closes #11884)
This commit is contained in:
Bram Moolenaar
2023-01-27 13:16:19 +00:00
parent 53f54e49b7
commit 657aea7fc4
5 changed files with 38 additions and 2 deletions

View File

@@ -423,7 +423,7 @@ early_ret:
char *wrong_name = is_class ? "endinterface" : "endclass";
if (checkforcmd(&p, wrong_name, is_class ? 5 : 4))
{
semsg(_(e_invalid_command_str), line);
semsg(_(e_invalid_command_str_expected_str), line, end_name);
break;
}