summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-08 16:40:13 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-08 16:40:13 +0200
commit1594f313452cf6ca88375d9c8f68605a9c3c8ab5 (patch)
treef21489741747b0b2882d1b985ae1d9645e02e2c5 /src/errors.h
parent30441bb3d5fa73f888b09684db3f54ff5ab48dbc (diff)
downloadvim-git-1594f313452cf6ca88375d9c8f68605a9c3c8ab5.tar.gz
patch 8.2.3123: Vim9: confusing error when using white space after optionv8.2.3123
Problem: Vim9: confusing error when using white space after option, before one of "!&<". Solution: Give a specific error. (issue #8408)
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 7524b8046..3a76d9e95 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -490,3 +490,5 @@ EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
EXTERN char e_regexp_number_after_dot_pos_search[]
INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
+EXTERN char e_no_white_space_allowed_between_option_and[]
+ INIT(= N_("E1205: No white space allowed between option and"));