comparison src/errors.h @ 21831:d8422de73113 v8.2.1465

patch 8.2.1465: Vim9: subscript not handled properly Commit: https://github.com/vim/vim/commit/56acb0943ede35cd9d2f6667cde2442819ccbf59 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 16 14:48:19 2020 +0200 patch 8.2.1465: Vim9: subscript not handled properly Problem: Vim9: subscript not handled properly. Solution: Adjust error message. Remove dead code. Disallow string to number conversion in scripts.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Aug 2020 15:00:05 +0200
parents ccad66ac6c3e
children e3f9528bddda
comparison
equal deleted inserted replaced
21830:bef87368c676 21831:d8422de73113
226 INIT(= N_("E1105: Cannot convert %s to string")); 226 INIT(= N_("E1105: Cannot convert %s to string"));
227 EXTERN char e_one_argument_too_many[] 227 EXTERN char e_one_argument_too_many[]
228 INIT(= N_("E1106: one argument too many")); 228 INIT(= N_("E1106: one argument too many"));
229 EXTERN char e_nr_arguments_too_many[] 229 EXTERN char e_nr_arguments_too_many[]
230 INIT(= N_("E1106: %d arguments too many")); 230 INIT(= N_("E1106: %d arguments too many"));
231 EXTERN char e_list_dict_or_blob_required[] 231 EXTERN char e_string_list_dict_or_blob_required[]
232 INIT(= N_("E1107: List, Dict or Blob required")); 232 INIT(= N_("E1107: String, List, Dict or Blob required"));
233 EXTERN char e_item_not_found_str[] 233 EXTERN char e_item_not_found_str[]
234 INIT(= N_("E1108: Item not found: %s")); 234 INIT(= N_("E1108: Item not found: %s"));
235 #endif 235 #endif