summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-12-28 21:36:58 -0700
committerKarl Williamson <public@khwilliamson.com>2013-12-31 08:27:24 -0700
commit251510308aef656a07a3b542ef19450c1f8d1c92 (patch)
tree356f1409f2ddf791ab2d97074dbb66806e3a2cf6 /utf8.c
parent1784d2f935ff888bd85e2072b1d2486e159c6caf (diff)
downloadperl-251510308aef656a07a3b542ef19450c1f8d1c92.tar.gz
Remove no-longer used inversion list function
The function _invlist_invert_prop() is hereby removed. The recent changes to allow \p{} to match above-Unicode means that no special handling of properties need be done when inverting. This function was accessible to XS code that cheated by using #defines to pretend it was something it wasn't, but it also has been marked as subject to change since its inception, and never appeared in any documentation.
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 45ea2339ba..3773cea8dd 100644
--- a/utf8.c
+++ b/utf8.c
@@ -4204,7 +4204,7 @@ Perl__swash_to_invlist(pTHX_ SV* const swash)
/* Invert if the data says it should be */
if (invert_it_svp && SvUV(*invert_it_svp)) {
- _invlist_invert_prop(invlist);
+ _invlist_invert(invlist);
}
/* This code is copied from swatch_get()