diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-10-16 12:26:47 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-10-17 21:52:16 -0600 |
commit | e62862f6d045336203855b670054699c6cb13286 (patch) | |
tree | aaf16e57166b46b8d0b56d148db2d2a8c4034255 | |
parent | b36527fc35dbde0cdd3f0d1808de479b5b70ee85 (diff) | |
download | perl-e62862f6d045336203855b670054699c6cb13286.tar.gz |
regcomp.c: White space only
Indent the newly formed block, and reflow comments for narrower
available space.
-rw-r--r-- | regcomp.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -10711,15 +10711,15 @@ parseit: value = toLOWER_LATIN1(value); if (AT_LEAST_UNI_SEMANTICS || !isASCII(value)) { - /* To join adjacent nodes, they must be the exact EXACTish type. - * Try to use the most likely type, by using EXACTFU if the regex - * calls for them, or is required because the character is - * non-ASCII */ - op = EXACTFU; - } - else { /* Otherwise, more likely to be EXACTF type */ - op = EXACTF; - } + /* To join adjacent nodes, they must be the exact EXACTish + * type. Try to use the most likely type, by using EXACTFU if + * the regex calls for them, or is required because the + * character is non-ASCII */ + op = EXACTFU; + } + else { /* Otherwise, more likely to be EXACTF type */ + op = EXACTF; + } } ret = reg_node(pRExC_state, op); |