diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-19 13:30:33 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-22 11:11:32 -0700 |
commit | 03940dc2f46d8ab2a50b54e8ef90d562295d5cec (patch) | |
tree | 275192c7b0e1408b33b061677975cd50933cd16e /handy.h | |
parent | dd66872884ceadf7ea6b1f4f7872a8403a9eefdf (diff) | |
download | perl-03940dc2f46d8ab2a50b54e8ef90d562295d5cec.tar.gz |
Remove temporary back-compat PL_ variable names
These names are synonyms for specific array elements, and were used
temporarily until all uses of them were removed. This commit removes
the remaining uses, and the definitions
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -829,16 +829,6 @@ static const char* const swash_property_names[] = { }; #endif -#define PL_utf8_alnum PL_utf8_swash_ptrs[_CC_WORDCHAR] -#define PL_utf8_alnumc PL_utf8_swash_ptrs[_CC_ALPHANUMERIC] -#define PL_utf8_alpha PL_utf8_swash_ptrs[_CC_ALPHA] -#define PL_utf8_graph PL_utf8_swash_ptrs[_CC_GRAPH] -#define PL_utf8_digit PL_utf8_swash_ptrs[_CC_DIGIT] -#define PL_utf8_upper PL_utf8_swash_ptrs[_CC_UPPER] -#define PL_utf8_lower PL_utf8_swash_ptrs[_CC_LOWER] -#define PL_utf8_print PL_utf8_swash_ptrs[_CC_PRINT] -#define PL_utf8_punct PL_utf8_swash_ptrs[_CC_PUNCT] - # ifdef DOINIT EXTCONST U32 PL_charclass[] = { # include "l1_char_class_tab.h" |