comparison src/errors.h @ 22637:4d4042683371 v8.2.1867

patch 8.2.1867: Vim9: argument to add() not checked for blob Commit: https://github.com/vim/vim/commit/80b0e5ea1132d1d7cf78c77bc14c686c836a0d25 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 19 20:45:36 2020 +0200 patch 8.2.1867: Vim9: argument to add() not checked for blob Problem: Vim9: argument to add() not checked for blob. Solution: Add the BLOBAPPEND instruction.
author Bram Moolenaar <Bram@vim.org>
date Mon, 19 Oct 2020 21:00:04 +0200
parents 6589dae9696c
children 05ecd9d23c1d
comparison
equal deleted inserted replaced
22636:8e65b58ff15d 22637:4d4042683371
282 INIT(= N_("E1128: } without {")); 282 INIT(= N_("E1128: } without {"));
283 EXTERN char e_throw_with_empty_string[] 283 EXTERN char e_throw_with_empty_string[]
284 INIT(= N_("E1129: Throw with empty string")); 284 INIT(= N_("E1129: Throw with empty string"));
285 EXTERN char e_cannot_add_to_null_list[] 285 EXTERN char e_cannot_add_to_null_list[]
286 INIT(= N_("E1130: Cannot add to null list")); 286 INIT(= N_("E1130: Cannot add to null list"));
287 EXTERN char e_cannot_add_to_null_blob[]
288 INIT(= N_("E1131: Cannot add to null blob"));
287 #endif 289 #endif