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 /intrpvar.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 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 09154b7a97..7966a3ffac 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -573,7 +573,6 @@ PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator if not '.' */ PERLVAR(I, utf8_alnum, SV *) PERLVAR(I, utf8_alpha, SV *) PERLVAR(I, utf8_space, SV *) -PERLVAR(I, utf8_cntrl, SV *) PERLVAR(I, utf8_graph, SV *) PERLVAR(I, utf8_digit, SV *) PERLVAR(I, utf8_upper, SV *) |