diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-09-24 12:05:25 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-10-01 09:58:08 -0600 |
commit | bc39fe246af9f9dbbeef6550e5e5795ca2c366e5 (patch) | |
tree | b0e4988e7684282b0b71ac2ef26d3f87f1f6189e /sv.c | |
parent | 141d8bad68a083b9ce300cdc2e34549bd4240fe4 (diff) | |
download | perl-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.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); |