diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-09-24 13:23:21 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-10-01 09:58:08 -0600 |
commit | 7b952154426e53253db1065e8e73307cafb4c28b (patch) | |
tree | 961df07252889efbbd02fc2dc53cfbfec06aad78 /embedvar.h | |
parent | a34094a9f21d9970be58b6482fe6e3245019558e (diff) | |
download | perl-7b952154426e53253db1065e8e73307cafb4c28b.tar.gz |
Don't use swash to find cntrls
Unicode stability policy guarantees that no code points will ever be
added to the control characters beyond those already in it.
All such characters are in the Latin1 range, and so the Perl core
already knows which ones those are, and so there is no need to go out to
disk and create a swash for these.
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/embedvar.h b/embedvar.h index 090e36ce7d..2354a8b40a 100644 --- a/embedvar.h +++ b/embedvar.h @@ -335,7 +335,6 @@ #define PL_utf8_X_prepend (vTHX->Iutf8_X_prepend) #define PL_utf8_alnum (vTHX->Iutf8_alnum) #define PL_utf8_alpha (vTHX->Iutf8_alpha) -#define PL_utf8_cntrl (vTHX->Iutf8_cntrl) #define PL_utf8_digit (vTHX->Iutf8_digit) #define PL_utf8_foldable (vTHX->Iutf8_foldable) #define PL_utf8_foldclosures (vTHX->Iutf8_foldclosures) |