projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0d735f0
)
EXACT correction attempt. Continued in #12863.
Jarkko Hietaniemi [Mon, 5 Nov 2001 23:24:24 +0000 (23:24 +0000)]
p4raw-id: //depot/perl@12861
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
b20e15d
..
98fcb65
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-2211,7
+2211,7
@@
S_regmatch(pTHX_ regnode *prog)
sayNO;
if (*((U8*)s) != utf8_to_uvchr((U8*)l, &len))
sayNO;
- s++;
+ s += len;
l += len;
}
else
@@
-2220,7
+2220,7
@@
S_regmatch(pTHX_ regnode *prog)
sayNO;
if (*((U8*)l) != utf8_to_uvchr((U8*)s, &len))
sayNO;
- s += len;
+ s++;
l++;
}
locinput = l;