summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-12 18:58:40 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-12 18:58:40 +0100
commit2a9d5d386bea8455b37c1accebc45683ec51d6fb (patch)
treee5e67a60b0741486ce6e53fe76ca3669a9f7e752 /src/errors.h
parent3ae50c775c00b098cdfc9e90b17c4cc07f00e08d (diff)
downloadvim-git-2a9d5d386bea8455b37c1accebc45683ec51d6fb.tar.gz
patch 8.2.2133: Vim9: checking for a non-empty string is too strictv8.2.2133
Problem: Vim9: checking for a non-empty string is too strict. Solution: Check for any string. (closes #7447)
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 b8ec9866b..30f0dc56e 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -313,3 +313,5 @@ EXTERN char e_for_argument_must_be_sequence_of_lists[]
INIT(= N_("E1140: For argument must be a sequence of lists"));
EXTERN char e_indexable_type_required[]
INIT(= N_("E1141: Indexable type required"));
+EXTERN char e_non_empty_string_required[]
+ INIT(= N_("E1142: Non-empty string required"));