summaryrefslogtreecommitdiffstats
path: root/src/regexp.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-21 22:20:33 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-21 22:20:33 +0200
commitd8e44476d84b5f0cc8c4de080a47a3a9af547028 (patch)
treec45296f474fb015dc94cedc81238377efc8e55b0 /src/regexp.c
parent05bd9785fd0fd0102ab64554307bff0ec0ae34c1 (diff)
patch 8.2.3197: error messages are spread outv8.2.3197
Problem: Error messages are spread out. Solution: Move a few more error messages to errors.h.
Diffstat (limited to 'src/regexp.c')
-rw-r--r--src/regexp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/regexp.c b/src/regexp.c
index 5a17d24e7b..e28d9e6959 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -74,9 +74,6 @@ toggle_Magic(int x)
static char_u e_missingbracket[] = N_("E769: Missing ] after %s[");
static char_u e_reverse_range[] = N_("E944: Reverse range in character class");
static char_u e_large_class[] = N_("E945: Range too large in character class");
-static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%(");
-static char_u e_unmatchedp[] = N_("E54: Unmatched %s(");
-static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)");
#ifdef FEAT_SYN_HL
static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here");
static char_u e_z1_not_allowed[] = N_("E67: \\z1 - \\z9 not allowed here");