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 /intrpvar.h | |
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 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 84534c94c1..dae9b84f1e 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -571,7 +571,6 @@ PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator if not '.' */ /* utf8 character classes */ PERLVAR(I, utf8_alnum, SV *) -PERLVAR(I, utf8_ascii, SV *) PERLVAR(I, utf8_alpha, SV *) PERLVAR(I, utf8_space, SV *) PERLVAR(I, utf8_perl_space, SV *) |