diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-09-24 12:19:42 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-10-01 09:58:08 -0600 |
commit | c44286936652fb6ed452d349e29e4cd965ea1707 (patch) | |
tree | c98d7dfadf5765f10a5d4c26b805cefafef56c25 /embedvar.h | |
parent | bc39fe246af9f9dbbeef6550e5e5795ca2c366e5 (diff) | |
download | perl-c44286936652fb6ed452d349e29e4cd965ea1707.tar.gz |
No need for swashes for properties that are ASCII-only
These three properties are restricted to being true only for ASCII
characters. That information is compiled into Perl, so no need to
create swashes for them.
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/embedvar.h b/embedvar.h index f468bd8013..090e36ce7d 100644 --- a/embedvar.h +++ b/embedvar.h @@ -344,9 +344,6 @@ #define PL_utf8_idstart (vTHX->Iutf8_idstart) #define PL_utf8_lower (vTHX->Iutf8_lower) #define PL_utf8_mark (vTHX->Iutf8_mark) -#define PL_utf8_perl_space (vTHX->Iutf8_perl_space) -#define PL_utf8_perl_word (vTHX->Iutf8_perl_word) -#define PL_utf8_posix_digit (vTHX->Iutf8_posix_digit) #define PL_utf8_print (vTHX->Iutf8_print) #define PL_utf8_punct (vTHX->Iutf8_punct) #define PL_utf8_space (vTHX->Iutf8_space) |