summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-06-26 15:00:59 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-26 15:00:59 +0200
commit3a3b10e87a10dd0bc355618dbfc4a0a6c828aad7 (patch)
treee74e88f7d0cbf28ff9d9af3ae9a371348656cdfa /src/errors.h
parent4d5dfe20839e9d13c95eaf4254467f952653b042 (diff)
downloadvim-git-3a3b10e87a10dd0bc355618dbfc4a0a6c828aad7.tar.gz
patch 8.2.3055: strange error for assigning to "x.key" on non-dictionaryv8.2.3055
Problem: Strange error for assigning to "x.key" on non-dictionary. Solution: Add a specific error message. (closes #8451)
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 a4dcea2c7..00894ef21 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -448,3 +448,5 @@ EXTERN char e_libsodium_decryption_failed_premature[]
INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
EXTERN char e_no_white_space_allowed_after_str_str[]
INIT(= N_("E1202: No white space allowed after '%s': %s"));
+EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
+ INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));