diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-02-03 10:57:33 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-02-09 10:13:54 -0700 |
commit | 3f80b5713f755394d2d1a3bc3befb0dd82a19f64 (patch) | |
tree | 68f926c927c01eec84d4d5da89f1d228a0b48d24 /embed.h | |
parent | 52ae8f7ebb1f32bbd4f574c090ff4ae9d6b468c7 (diff) | |
download | perl-3f80b5713f755394d2d1a3bc3befb0dd82a19f64.tar.gz |
regcomp.c: _invlist_subtract() becomes a macro
This function is no longer necessary, as it is just a call to the newly
created _invlist_intersection_maybe_complement_2nd() with the correct
parameters.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -953,7 +953,6 @@ #define _invlist_invert(a) Perl__invlist_invert(aTHX_ a) #define _invlist_invert_prop(a) Perl__invlist_invert_prop(aTHX_ a) #define _invlist_populate_swatch(a,b,c,d) Perl__invlist_populate_swatch(aTHX_ a,b,c,d) -#define _invlist_subtract(a,b,c) Perl__invlist_subtract(aTHX_ a,b,c) #define _invlist_union(a,b,c) Perl__invlist_union(aTHX_ a,b,c) #define _new_invlist(a) Perl__new_invlist(aTHX_ a) #define _swash_inversion_hash(a) Perl__swash_inversion_hash(aTHX_ a) |