diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-09-05 19:51:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-09-05 19:51:13 +0100 |
commit | ccfde4d028e891a41e3548323c3d47b06fb0b83e (patch) | |
tree | 03698a6be2dbc927c232a4db9e18e68d0b558407 /src/errors.h | |
parent | 8894761daf68220504932c8b3e75f59138cdb617 (diff) | |
download | vim-git-9.0.0389.tar.gz |
patch 9.0.0389: crash when 'tagfunc' closes the windowv9.0.0389
Problem: Crash when 'tagfunc' closes the window.
Solution: Bail out when the window was closed.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index ee75d07e5..44eb9db9f 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3324,3 +3324,5 @@ EXTERN char e_non_null_dict_required_for_argument_nr[] EXTERN char e_non_null_list_required_for_argument_nr[] INIT(= N_("E1298: Non-NULL List required for argument %d")); #endif +EXTERN char e_window_unexpectedly_close_while_searching_for_tags[] + INIT(= N_("E1299: Window unexpectedly closed while searching for tags")); |