summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-08-21 22:27:19 -0600
committerKarl Williamson <khw@cpan.org>2019-02-14 22:12:44 -0700
commit4c404f263914b5bf989d64b86ad715cc085b84a0 (patch)
tree3e4a3554b45b65b67230813e026c861a370a69f5 /utf8.h
parent4ebed06a4c0245fffc2d13602f9b0373e0d5f49e (diff)
downloadperl-4c404f263914b5bf989d64b86ad715cc085b84a0.tar.gz
Remove relics of regex swash use
This removes the most obvious and easy things that are no longer needed since regexes no longer use swashes at all. tr/// continues, for the time being, to use swashes, so not all swash handling is removable now. But tr/// doesn't use inversion lists, and so a bunch of code is ripped out here. Other code could have been, but I did only the relatively easy stuff. The rest can be ripped out all at once when tr/// is stops using swashes.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/utf8.h b/utf8.h
index 57be2e408f..99e795d3a4 100644
--- a/utf8.h
+++ b/utf8.h
@@ -34,11 +34,6 @@
#define FOLD_FLAGS_FULL 0x2
#define FOLD_FLAGS_NOMIX_ASCII 0x4
-/* For _core_swash_init(), internal core use only */
-#define _CORE_SWASH_INIT_USER_DEFINED_PROPERTY 0x1
-#define _CORE_SWASH_INIT_RETURN_IF_UNDEF 0x2
-#define _CORE_SWASH_INIT_ACCEPT_INVLIST 0x4
-
/*
=head1 Unicode Support
L<perlguts/Unicode Support> has an introduction to this API.