summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-05 21:21:25 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-05 21:21:25 +0100
commit86d87256c4005c6215da5af2597fbf6f6304421f (patch)
treeafccb6cd2b198c0c81f064e7d7de5cce316d52a6 /src/errors.h
parentccfde4d028e891a41e3548323c3d47b06fb0b83e (diff)
downloadvim-git-86d87256c4005c6215da5af2597fbf6f6304421f.tar.gz
patch 9.0.0390: cannot use a partial with :deferv9.0.0390
Problem: Cannot use a partial with :defer. Solution: Add the partial arguments before the other arguments. Disallow using a dictionary.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 44eb9db9f..2ed62a2af 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3326,3 +3326,7 @@ EXTERN char e_non_null_list_required_for_argument_nr[]
#endif
EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
+#ifdef FEAT_EVAL
+EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
+ INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
+#endif