From: Nicholas Clark Date: Sun, 23 Jan 2005 22:06:01 +0000 (+0000) Subject: Tidy up 2 comments X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8fdec51143ba8063c924c83e982d4e30db7fb7ae;p=p5sagit%2Fp5-mst-13.2.git Tidy up 2 comments p4raw-id: //depot/perl@23868 --- diff --git a/regcomp.c b/regcomp.c index 01bb71a..e9532bf 100644 --- a/regcomp.c +++ b/regcomp.c @@ -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; }