diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-01-23 22:06:01 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-01-23 22:06:01 +0000 |
commit | 8fdec51143ba8063c924c83e982d4e30db7fb7ae (patch) | |
tree | 4f9504a9f16fcf67424c551a0b3beefed608add0 /regcomp.c | |
parent | af6ca1d0181f472691c45f9f3b0e93e14d574fbb (diff) | |
download | perl-8fdec51143ba8063c924c83e982d4e30db7fb7ae.tar.gz |
Tidy up 2 comments
p4raw-id: //depot/perl@23868
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3486,7 +3486,7 @@ S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value) = complement ? ANYOF_NLOWER : ANYOF_LOWER; } if (memEQ(posixcc, "uppe", 4)) { - /* r */ + /* r */ namedclass = complement ? ANYOF_NUPPER : ANYOF_UPPER; } @@ -3498,7 +3498,7 @@ S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value) = complement ? ANYOF_NDIGIT : ANYOF_DIGIT; } if (memEQ(posixcc, "prin", 4)) { - /* t */ + /* t */ namedclass = complement ? ANYOF_NPRINT : ANYOF_PRINT; } |