summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-03-20 11:26:14 -0600
committerKarl Williamson <public@khwilliamson.com>2011-03-20 12:16:13 -0600
commit1d4120df745f39cf0ba70379a5bed371bf4c61f4 (patch)
tree51279a21f1d4c1f5b421ba5a97d02437703a6fda
parentd669c36c28e1251b2c76e2ac3bb12de0f81b22e9 (diff)
downloadperl-1d4120df745f39cf0ba70379a5bed371bf4c61f4.tar.gz
regcomp.c: Use mnemonic instead of hex value
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 31354f6662..1a2d2b2cdb 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -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) {