summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-11-17 03:48:12 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-11-17 03:48:12 +0000
commit6f06b55ffd47b279dd1684acb9b556a45e4754a3 (patch)
tree27f307f34f277b390a482752bec7c18164dd99c2 /regexec.c
parentf62c0cf247ab0260b680faf6bc722682ba662635 (diff)
downloadperl-6f06b55ffd47b279dd1684acb9b556a45e4754a3.tar.gz
s/Perl_utf8skip/PL_utf8skip/g
p4raw-id: //depot/perl@2241
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/regexec.c b/regexec.c
index 83db7b5472..841b9008c2 100644
--- a/regexec.c
+++ b/regexec.c
@@ -417,7 +417,7 @@ regexec_flags(register regexp *prog, char *stringarg, register char *strend,
if (s > startpos)
s--;
while (s < strend) {
- if (*s++ == '\n') { /* don't need utf8skip here */
+ if (*s++ == '\n') { /* don't need PL_utf8skip here */
if (s < strend && regtry(prog, s))
goto got_it;
}
@@ -1185,7 +1185,7 @@ regmatch(regnode *prog)
break;
case SANYUTF8:
if (nextchr & 0x80) {
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
if (locinput > PL_regeol)
sayNO;
nextchr = UCHARAT(locinput);
@@ -1202,7 +1202,7 @@ regmatch(regnode *prog)
break;
case ANYUTF8:
if (nextchr & 0x80) {
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
if (locinput > PL_regeol)
sayNO;
nextchr = UCHARAT(locinput);
@@ -1278,7 +1278,7 @@ regmatch(regnode *prog)
sayNO;
if (locinput >= PL_regeol)
sayNO;
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
case ANYOF:
@@ -1315,7 +1315,7 @@ regmatch(regnode *prog)
{
sayNO;
}
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1348,7 +1348,7 @@ regmatch(regnode *prog)
{
sayNO;
}
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1420,7 +1420,7 @@ regmatch(regnode *prog)
{
sayNO;
}
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1453,7 +1453,7 @@ regmatch(regnode *prog)
{
sayNO;
}
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1471,7 +1471,7 @@ regmatch(regnode *prog)
if (nextchr & 0x80) {
if (!(swash_fetch(PL_utf8_digit,(U8*)locinput)))
sayNO;
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1492,7 +1492,7 @@ regmatch(regnode *prog)
if (nextchr & 0x80) {
if (swash_fetch(PL_utf8_digit,(U8*)locinput))
sayNO;
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
nextchr = UCHARAT(locinput);
break;
}
@@ -1503,7 +1503,7 @@ regmatch(regnode *prog)
case CLUMP:
if (locinput >= PL_regeol || swash_fetch(PL_utf8_mark,(U8*)locinput))
sayNO;
- locinput += utf8skip[nextchr];
+ locinput += PL_utf8skip[nextchr];
while (locinput < PL_regeol && swash_fetch(PL_utf8_mark,(U8*)locinput))
locinput += UTF8SKIP(locinput);
if (locinput > PL_regeol)