summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-28 21:00:51 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-28 21:00:51 +0000
commite96eea7b6a56bc7c12e062e90b2e816ff61e705c (patch)
treebb55f176979904ea0a963e60470933123e61ee15 /src/errors.h
parent652dee448618589de5528a9e9a36995803f5557a (diff)
patch 8.2.4246: one error message not in errors.hv8.2.4246
Problem: One error message not in errors.h. (Antonio Colombo) Solution: Move the message and rename.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index da45df2100..7e6d0dbd18 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -747,7 +747,10 @@ EXTERN char e_didnt_get_block_nr_one[]
INIT(= N_("E298: Didn't get block nr 1?"));
EXTERN char e_didnt_get_block_nr_two[]
INIT(= N_("E298: Didn't get block nr 2?"));
-// E299 unused
+#ifdef FEAT_PERL
+EXTERN char e_perl_evaluation_forbidden_in_sandbox_without_safe_module[]
+ INIT(= N_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
+#endif
EXTERN char e_swap_file_already_exists_symlink_attack[]
INIT(= N_("E300: Swap file already exists (symlink attack?)"));
EXTERN char e_oops_lost_the_swap_file[]