summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-17 20:44:56 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-17 20:44:56 +0200
commit51e933261b984db014e858d79387a826d2626fb6 (patch)
tree29c07c5c1e9acbbffe79a9da8065c0098a094bb6 /src/errors.h
parent0995c81f2ffe276669daa004f7778ecc6f5ee09d (diff)
patch 8.2.2777: Vim9: blob operations not tested in all waysv8.2.2777
Problem: Vim9: blob operations not tested in all ways. Solution: Run tests with CheckLegacyAndVim9Success(). Make blob assign with index work.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 99f3aaff5a..1e091867f2 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -403,3 +403,5 @@ EXTERN char e_blob_required[]
INIT(= N_("E1182: Blob required"));
EXTERN char e_cannot_use_range_with_assignment_operator_str[]
INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
+EXTERN char e_blob_not_set[]
+ INIT(= N_("E1184: Blob not set"));