summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-28 17:55:31 +0100
committerBram Moolenaar <Bram@vim.org>2020-10-28 17:55:31 +0100
commit3e2534ed1a6557445747e6c1439ad26ec8eabfc4 (patch)
tree5dd1426536ed0879fd1c37b958b2d945f477cb24 /src/errors.h
parent159563b439d1b2a61d1003430b6c9f2a8509b5c5 (diff)
downloadvim-git-3e2534ed1a6557445747e6c1439ad26ec8eabfc4.tar.gz
patch 8.2.1918: Vim9: E1100 mentions :letv8.2.1918
Problem: Vim9: E1100 mentions :let. Solution: Mention "var". (closes #7207)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/errors.h b/src/errors.h
index 4d8456ffe..1843f3d6f 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -27,8 +27,8 @@ EXTERN char e_assert_fails_second_arg[]
INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
EXTERN char e_cannot_index_special_variable[]
INIT(= N_("E909: Cannot index a special variable"));
-EXTERN char e_missing_let_str[]
- INIT(= N_("E1100: Missing :let: %s"));
+EXTERN char e_missing_var_str[]
+ INIT(= N_("E1100: Missing :var: %s"));
EXTERN char e_variable_not_found_str[]
INIT(= N_("E1001: Variable not found: %s"));
EXTERN char e_syntax_error_at_str[]