summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-09-24 12:05:25 -0600
committerKarl Williamson <public@khwilliamson.com>2011-10-01 09:58:08 -0600
commitbc39fe246af9f9dbbeef6550e5e5795ca2c366e5 (patch)
treeb0e4988e7684282b0b71ac2ef26d3f87f1f6189e /sv.c
parent141d8bad68a083b9ce300cdc2e34549bd4240fe4 (diff)
downloadperl-bc39fe246af9f9dbbeef6550e5e5795ca2c366e5.tar.gz
No need for swashes for computing if ASCII
This information is trivially computed via the macro, no need to go out to disk and store a swash for this.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 6ab04da001..91ccc4d6c3 100644
--- a/sv.c
+++ b/sv.c
@@ -13210,7 +13210,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
/* utf8 character classes */
PL_utf8_alnum = sv_dup_inc(proto_perl->Iutf8_alnum, param);
- PL_utf8_ascii = sv_dup_inc(proto_perl->Iutf8_ascii, param);
PL_utf8_alpha = sv_dup_inc(proto_perl->Iutf8_alpha, param);
PL_utf8_space = sv_dup_inc(proto_perl->Iutf8_space, param);
PL_utf8_cntrl = sv_dup_inc(proto_perl->Iutf8_cntrl, param);