Skip to content

Commit 90277ad

Browse files
committed
updated for version 7.4a.020
Problem: Superfluous mb_ptr_adv(). Solution: Remove the call. (Dominique Pelle)
1 parent f627121 commit 90277ad

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/regexp_nfa.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,6 @@ nfa_regatom()
15161516
EMIT('-');
15171517
EMIT(NFA_CONCAT);
15181518
}
1519-
mb_ptr_adv(regparse);
15201519

15211520
/* skip the trailing ] */
15221521
regparse = endp;
@@ -4582,7 +4581,7 @@ recursive_regmatch(state, pim, prog, submatch, m, listids)
45824581

45834582
/* Go back the specified number of bytes, or as far as the
45844583
* start of the previous line, to try matching "\@<=" or
4585-
* not matching "\@<!". This is very ineffecient, limit the number of
4584+
* not matching "\@<!". This is very inefficient, limit the number of
45864585
* bytes if possible. */
45874586
if (state->val <= 0)
45884587
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,8 @@ static char *(features[]) =
727727

728728
static int included_patches[] =
729729
{ /* Add new patch number below this line */
730+
/**/
731+
20,
730732
/**/
731733
19,
732734
/**/

0 commit comments

Comments
 (0)