diff options
author | Christian Brabandt <cb@256bit.org> | 2022-05-18 15:04:02 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-18 15:04:02 +0100 |
commit | 360da40b47a84ee8586c3b5d062f8c64a2ac9cc6 (patch) | |
tree | 0be4a080f9ef8f262bf93da97dd512de6cfdea98 /src/errors.h | |
parent | e2bd8600b873d2cd1f9d667c28cba8b1dba18839 (diff) | |
download | vim-git-360da40b47a84ee8586c3b5d062f8c64a2ac9cc6.tar.gz |
patch 8.2.4978: no error if engine selection atom is not at the startv8.2.4978
Problem: No error if engine selection atom is not at the start.
Solution: Give an error. (Christian Brabandt, closes #10439)
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index 526c5f7a5..7a21ceeca 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3277,3 +3277,5 @@ EXTERN char e_missing_close_curly_str[] EXTERN char e_illegal_character_in_word[] INIT(= N_("E1280: Illegal character in word")); #endif +EXTERN char e_atom_engine_must_be_at_start_of_pattern[] + INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern")); |