summaryrefslogtreecommitdiff
path: root/dquote_inline.h
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 /dquote_inline.h
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 'dquote_inline.h')
-rw-r--r--dquote_inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dquote_inline.h b/dquote_inline.h
index d8548bf890..02c4f1d427 100644
--- a/dquote_inline.h
+++ b/dquote_inline.h
@@ -153,7 +153,7 @@ S_grok_bslash_x(pTHX_ char **s, UV *uv, const char** error_msg,
ok:
/* guarantee replacing "\x{...}" with utf8 bytes fits within
* existing space */
- assert(OFFUNISKIP(*uv) < *s - start);
+ assert(UVCHR_SKIP(*uv) < *s - start);
return TRUE;
}