comparison src/errors.h @ 32454:db97ccaaa7c8 v9.0.1558

patch 9.0.1558: wrong error for unreachable code after :throw Commit: https://github.com/vim/vim/commit/a2c0028fdf8dcf0408e27be730ac0e691ef9559b Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 14 22:05:15 2023 +0100 patch 9.0.1558: wrong error for unreachable code after :throw Problem: Wrong error for unreachable code after :throw. Solution: Adjust the error message.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 May 2023 23:15:03 +0200
parents ffbae151e462
children d6055989fa27
comparison
equal deleted inserted replaced
32453:791f20a38b61 32454:db97ccaaa7c8
2807 INIT(= N_("E1092: Cannot nest :redir")); 2807 INIT(= N_("E1092: Cannot nest :redir"));
2808 EXTERN char e_expected_nr_items_but_got_nr[] 2808 EXTERN char e_expected_nr_items_but_got_nr[]
2809 INIT(= N_("E1093: Expected %d items but got %d")); 2809 INIT(= N_("E1093: Expected %d items but got %d"));
2810 EXTERN char e_import_can_only_be_used_in_script[] 2810 EXTERN char e_import_can_only_be_used_in_script[]
2811 INIT(= N_("E1094: Import can only be used in a script")); 2811 INIT(= N_("E1094: Import can only be used in a script"));
2812 EXTERN char e_unreachable_code_after_return[] 2812 EXTERN char e_unreachable_code_after_str[]
2813 INIT(= N_("E1095: Unreachable code after :return")); 2813 INIT(= N_("E1095: Unreachable code after :%s"));
2814 EXTERN char e_returning_value_in_function_without_return_type[] 2814 EXTERN char e_returning_value_in_function_without_return_type[]
2815 INIT(= N_("E1096: Returning a value in a function without a return type")); 2815 INIT(= N_("E1096: Returning a value in a function without a return type"));
2816 EXTERN char e_line_incomplete[] 2816 EXTERN char e_line_incomplete[]
2817 INIT(= N_("E1097: Line incomplete")); 2817 INIT(= N_("E1097: Line incomplete"));
2818 EXTERN char e_string_list_or_blob_required[] 2818 EXTERN char e_string_list_or_blob_required[]