summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorrbtnn <naru123456789@gmail.com>2021-12-15 19:14:54 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-15 19:14:54 +0000
commitc479ce032f5d4d14bab9e479acbf42d758879893 (patch)
tree454c6b6b73f078b499e45d1ce2ae59fb19d5139a /src/errors.h
parentf87dac04c351583241ea1c4ec4228516431e6f22 (diff)
patch 8.2.3818: cannot filter or map characters in a stringv8.2.3818
Problem: Cannot filter or map characters in a string. Solution: Make filter() and map() work on a string. (Naruhiko Nishino, closes #9327)
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 452ff451b3..156e1949fb 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -758,3 +758,5 @@ EXTERN char e_closure_called_from_invalid_context[]
INIT(= N_("E1248: Closure called from invalid context"));
EXTERN char e_highlight_group_name_too_long[]
INIT(= N_("E1249: Highlight group name too long"));
+EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
+ INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));