summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-03-05 20:24:41 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-05 20:24:41 +0000
commitb2175220dafc28349b275ac7f3080f89cce78a57 (patch)
tree3ffc364a08fa4c0961a1b38b9a2d0547b6895e18 /src/errors.h
parentb29ae159777028bb3266835b55716749ab0515be (diff)
patch 8.2.4514: Vim9: some flow commands can be shortenedv8.2.4514
Problem: Vim9: some flow commands can be shortened. Solution: Also require using the full name for ":return", ":enddef", ":continue", ":export" and ":import".
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index 9a2c394bc5..e302ecc6ed 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -2761,7 +2761,7 @@ EXTERN char e_type_mismatch_for_v_variable[]
#endif
EXTERN char e_yank_register_changed_while_using_it[]
INIT(= N_("E1064: Yank register changed while using it"));
-EXTERN char e_command_cannot_be_shortened[]
+EXTERN char e_command_cannot_be_shortened_str[]
INIT(= N_("E1065: Command cannot be shortened: %s"));
#ifdef FEAT_EVAL
EXTERN char e_cannot_declare_a_register_str[]