summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-05 21:30:37 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-05 21:30:37 +0200
commit2976c028ca65631825581dcd4e36b56ddc1ae82d (patch)
tree8fafacebdba6c8d43dd2552c14da819b8d5ea591 /src
parentc19b4b50a800c9866df4de0d30a25dc9d9af4939 (diff)
downloadvim-git-2976c028ca65631825581dcd4e36b56ddc1ae82d.tar.gz
updated for version 7.3.1127v7.3.1127
Problem: No error for using empty \%[]. Solution: Give error message.
Diffstat (limited to 'src')
-rw-r--r--src/regexp.c4
-rw-r--r--src/regexp_nfa.c3
-rw-r--r--src/version.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/src/regexp.c b/src/regexp.c
index bf640fce2..432d7b577 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -366,7 +366,7 @@ static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here");
static char_u e_z1_not_allowed[] = N_("E67: \\z1 et al. not allowed here");
#endif
static char_u e_missing_sb[] = N_("E69: Missing ] after %s%%[");
-
+static char_u e_empty_sb[] = N_("E70: Empty %s%%[]");
#define NOT_MULTI 0
#define MULTI_ONE 1
#define MULTI_MULT 2
@@ -2227,7 +2227,7 @@ regatom(flagp)
return NULL;
}
if (ret == NULL)
- EMSG2_RET_NULL(_("E70: Empty %s%%[]"),
+ EMSG2_RET_NULL(_(e_empty_sb),
reg_magic == MAGIC_ALL);
lastbranch = regnode(BRANCH);
br = regnode(NOTHING);
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index 189e413ff..ec5543c46 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -977,6 +977,9 @@ nfa_regatom()
reg_magic == MAGIC_ALL);
EMIT(c);
}
+ if (n == 0)
+ EMSG2_RET_FAIL(_(e_empty_sb),
+ reg_magic == MAGIC_ALL);
EMIT(NFA_OPT_CHARS);
EMIT(n);
break;
diff --git a/src/version.c b/src/version.c
index 92fa3d767..fe9465a0e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1127,
+/**/
1126,
/**/
1125,