summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-08-04 19:25:54 +0200
committerBram Moolenaar <Bram@vim.org>2021-08-04 19:25:54 +0200
commit80d7395dcfe96158428da6bb3d28a6eee1244e28 (patch)
tree84b3b09fe59c97f69d6248e87cf0b51dfdfd82e6 /src/errors.h
parent0eec8519424eaea7baebfda979c33dd609a4e3fa (diff)
patch 8.2.3284: no error for insert() or remove() changing a locked blobv8.2.3284
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)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index 44b2828f6a..942cf658b4 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -366,7 +366,8 @@ EXTERN char e_returning_value_in_function_without_return_type[]
INIT(= N_("E1096: Returning a value in a function without a return type"));
EXTERN char e_line_incomplete[]
INIT(= N_("E1097: Line incomplete"));
-// E1098 unused
+EXTERN char e_string_list_or_blob_required[]
+ INIT(= N_("E1098: String, List or Blob required"));
EXTERN char e_unknown_error_while_executing_str[]
INIT(= N_("E1099: Unknown error while executing %s"));
EXTERN char e_cannot_declare_script_variable_in_function[]