comparison src/errors.h @ 23917:4b417b776b95 v8.2.2501

patch 8.2.2501: not always clear where an error is reported Commit: https://github.com/vim/vim/commit/f785aa1354208f6b644e891aa01f8f86d947af7e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 11 21:19:34 2021 +0100 patch 8.2.2501: not always clear where an error is reported Problem: Not always clear where an error is reported. Solution: Add the where_T structure and pass it around. (closes https://github.com/vim/vim/issues/7796)
author Bram Moolenaar <Bram@vim.org>
date Thu, 11 Feb 2021 21:30:04 +0100
parents 5db7d275543c
children 2a885d095bff
comparison
equal deleted inserted replaced
23916:cdb1a04f8189 23917:4b417b776b95
359 INIT(= N_("E1160: Cannot use a default for variable arguments")); 359 INIT(= N_("E1160: Cannot use a default for variable arguments"));
360 EXTERN char e_cannot_json_encode_str[] 360 EXTERN char e_cannot_json_encode_str[]
361 INIT(= N_("E1161: Cannot json encode a %s")); 361 INIT(= N_("E1161: Cannot json encode a %s"));
362 EXTERN char e_register_name_must_be_one_char_str[] 362 EXTERN char e_register_name_must_be_one_char_str[]
363 INIT(= N_("E1162: Register name must be one character: %s")); 363 INIT(= N_("E1162: Register name must be one character: %s"));
364 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
365 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));