diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-03-20 11:26:14 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-03-20 12:16:13 -0600 |
commit | 1d4120df745f39cf0ba70379a5bed371bf4c61f4 (patch) | |
tree | 51279a21f1d4c1f5b421ba5a97d02437703a6fda | |
parent | d669c36c28e1251b2c76e2ac3bb12de0f81b22e9 (diff) | |
download | perl-1d4120df745f39cf0ba70379a5bed371bf4c61f4.tar.gz |
regcomp.c: Use mnemonic instead of hex value
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9423,8 +9423,8 @@ S_set_regclass_bit_fold(pTHX_ RExC_state_t *pRExC_state, regnode* node, const U8 LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS); break; case LATIN_SMALL_LETTER_SHARP_S: - /* 0x1E9E is LATIN CAPITAL LETTER SHARP S */ - *invlist_ptr = add_cp_to_invlist(*invlist_ptr, 0x1E9E); + *invlist_ptr = add_cp_to_invlist(*invlist_ptr, + LATIN_CAPITAL_LETTER_SHARP_S); /* Under /a, /d, and /u, this can match the two chars "ss" */ if (! MORE_ASCII_RESTRICTED) { |