summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-09-24 13:23:21 -0600
committerKarl Williamson <public@khwilliamson.com>2011-10-01 09:58:08 -0600
commit7b952154426e53253db1065e8e73307cafb4c28b (patch)
tree961df07252889efbbd02fc2dc53cfbfec06aad78 /intrpvar.h
parenta34094a9f21d9970be58b6482fe6e3245019558e (diff)
downloadperl-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.h1
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 *)