summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-16 19:38:07 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-16 19:38:07 +0000
commitc665dabdf4c49a0fbf1dc566253c75c2abe2effa (patch)
tree3f55d76cf3fed62974742d4739836cc3cb554d09 /src/errors.h
parentc84287d6d8dd055bb6e30605465a23a8addb6fde (diff)
patch 8.2.4115: cannot use a method with a complex expressionv8.2.4115
Problem: Cannot use a method with a complex expression. Solution: Evaluate the expression after "->" and use the result.
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 5e9b6af5d3..e576f810c6 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3212,4 +3212,6 @@ EXTERN char e_using_autoload_in_script_not_under_autoload_directory[]
INIT(= N_("E1263: Using autoload in a script not under an autoload directory"));
EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
+EXTERN char e_cannot_use_partial_here[]
+ INIT(= N_("E1265: Cannot use a partial here"));
#endif