summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-08 23:30:04 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-08 23:30:04 +0200
commita940aa6fc44c18e012bf66e1f2569c046132d509 (patch)
tree85b9178d1943e15b01e7a79d9986f3b411ea8de7
parent1e02e6620be6f6ded23879dec344badf71a34ca8 (diff)
updated for version 7.3.1152v7.3.1152
Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck) Solution: Add #ifdef.
-rw-r--r--src/regexp_nfa.c6
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index 5c6e986f4f..2c2e9dee3e 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -6198,7 +6198,11 @@ nfa_regexec_both(line, startcol)
/* If match_text is set it contains the full text that must match.
* Nothing else to try. Doesn't handle combining chars well. */
- if (prog->match_text != NULL && !ireg_icombine)
+ if (prog->match_text != NULL
+#ifdef FEAT_MBYTE
+ && !ireg_icombine
+#endif
+ )
return find_match_text(col, prog->regstart, prog->match_text);
}
diff --git a/src/version.c b/src/version.c
index a442ecb966..7587256a80 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 */
/**/
+ 1152,
+/**/
1151,
/**/
1150,