summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-13 17:38:08 -0600
committerKarl Williamson <khw@cpan.org>2015-09-04 10:21:17 -0600
commit5f560d8a4c59b10752c634d9aa60ea57dd4eeff1 (patch)
tree4b1892e9cb54eb43d3d27caae775aa2d2269829b /op.c
parent19d0ef390c454e5bf965592560ce9818e74c13a6 (diff)
downloadperl-5f560d8a4c59b10752c634d9aa60ea57dd4eeff1.tar.gz
Change to use UVCHR_SKIP over UNI_SKIP
UNI_SKIP is somewhat ambiguous. Perl has long used 'uvchr' as part of a name to mean the unsigned values using the native character set plus Unicode values for those above 255. This also changes two calls (one in dquote_static.c and one in dquote_inline.h) to use UVCHR_SKIP; they should not have been OFFUNI, as they are dealing with native values.
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 72c680916b..0163b7a278 100644
--- a/op.c
+++ b/op.c
@@ -5193,7 +5193,7 @@ S_pmtrans(pTHX_ OP *o, OP *expr, OP *repl)
max = rfirst + diff;
if (!grows)
grows = (tfirst < rfirst &&
- UNISKIP(tfirst) < UNISKIP(rfirst + diff));
+ UVCHR_SKIP(tfirst) < UVCHR_SKIP(rfirst + diff));
rfirst += diff + 1;
}
tfirst += diff + 1;