comparison src/errors.h @ 25495:7144d2ffc86b v8.2.3284

patch 8.2.3284: no error for insert() or remove() changing a locked blob Commit: https://github.com/vim/vim/commit/80d7395dcfe96158428da6bb3d28a6eee1244e28 Author: Sean Dewar <seandewar@users.noreply.github.com> Date: Wed Aug 4 19:25:54 2021 +0200 patch 8.2.3284: no error for insert() or remove() changing a locked blob Problem: No error for insert() or remove() changing a locked blob. Solution: Check a blob is not locked before changing it. (Sean Dewar, closes #8696)
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Aug 2021 19:30:04 +0200
parents b9419c9d3da6
children 2063b858cad9
comparison
equal deleted inserted replaced
25494:bdb60211e4d3 25495:7144d2ffc86b
364 INIT(= N_("E1095: Unreachable code after :return")); 364 INIT(= N_("E1095: Unreachable code after :return"));
365 EXTERN char e_returning_value_in_function_without_return_type[] 365 EXTERN char e_returning_value_in_function_without_return_type[]
366 INIT(= N_("E1096: Returning a value in a function without a return type")); 366 INIT(= N_("E1096: Returning a value in a function without a return type"));
367 EXTERN char e_line_incomplete[] 367 EXTERN char e_line_incomplete[]
368 INIT(= N_("E1097: Line incomplete")); 368 INIT(= N_("E1097: Line incomplete"));
369 // E1098 unused 369 EXTERN char e_string_list_or_blob_required[]
370 INIT(= N_("E1098: String, List or Blob required"));
370 EXTERN char e_unknown_error_while_executing_str[] 371 EXTERN char e_unknown_error_while_executing_str[]
371 INIT(= N_("E1099: Unknown error while executing %s")); 372 INIT(= N_("E1099: Unknown error while executing %s"));
372 EXTERN char e_cannot_declare_script_variable_in_function[] 373 EXTERN char e_cannot_declare_script_variable_in_function[]
373 INIT(= N_("E1101: Cannot declare a script variable in a function: %s")); 374 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
374 EXTERN char e_lambda_function_not_found_str[] 375 EXTERN char e_lambda_function_not_found_str[]