comparison src/errors.h @ 26424:f6ca4276c4cc v8.2.3743

patch 8.2.3743: ":sign" can add a highlight group without a name Commit: https://github.com/vim/vim/commit/5e18ccc60bdddc4aa39ab039f1a7c918f29e67ce Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 5 13:02:50 2021 +0000 patch 8.2.3743: ":sign" can add a highlight group without a name Problem: ":sign" can add a highlight group without a name. Solution: Give an error if the group name is missing. (closes https://github.com/vim/vim/issues/9280)
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Dec 2021 14:15:03 +0100
parents 712648e62913
children f612c41cfd94
comparison
equal deleted inserted replaced
26423:2f222239640f 26424:f6ca4276c4cc
692 INIT(= N_("E1246: Cannot find variable to (un)lock: %s")); 692 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
693 EXTERN char e_line_number_out_of_range[] 693 EXTERN char e_line_number_out_of_range[]
694 INIT(= N_("E1247: Line number out of range")); 694 INIT(= N_("E1247: Line number out of range"));
695 EXTERN char e_closure_called_from_invalid_context[] 695 EXTERN char e_closure_called_from_invalid_context[]
696 INIT(= N_("E1248: Closure called from invalid context")); 696 INIT(= N_("E1248: Closure called from invalid context"));
697 EXTERN char e_group_name_missing_for_str[]
698 INIT(= N_("E1249: Group name missing for %s"));