From 6c46377d3226d15447819a5fa3518c660bce7679 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 2 Dec 2012 18:48:33 -0700 Subject: [PATCH] utf8.c: Combine 2 function calls into one There is a function that does both these together, more efficiently --- utf8.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utf8.c b/utf8.c index 820fa82..418f0d8 100644 --- a/utf8.c +++ b/utf8.c @@ -4055,8 +4055,7 @@ Perl__swash_to_invlist(pTHX_ SV* const swash) _invlist_union(invlist, other, &invlist); break; case '!': - _invlist_invert(other); - _invlist_union(invlist, other, &invlist); + _invlist_union_maybe_complement_2nd(invlist, other, TRUE, &invlist); break; case '-': _invlist_subtract(invlist, other, &invlist); -- 2.7.4