summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2016-10-27 22:28:55 +0200
committerYves Orton <demerphq@gmail.com>2016-10-27 22:28:55 +0200
commitdca5fc4c983ec7d36d46ec5224844cb8a7a91e5b (patch)
tree080ab2a446c524cbe14493e928779e4924ff8218 /regcomp.c
parent20ed8c886149743bda473079228bf6caf641752a (diff)
downloadperl-dca5fc4c983ec7d36d46ec5224844cb8a7a91e5b.tar.gz
regcomp.c: whitespace only change, break up dense code/long line
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index 5a1744daef..7bfa353677 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -2574,7 +2574,15 @@ S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch,
noper= noper_next;
}
- if ( noper < tail && ( OP(noper) == flags || ( flags == EXACTFU && OP(noper) == EXACTFU_SS ) ) ) {
+ if ( noper < tail &&
+ (
+ OP(noper) == flags ||
+ (
+ flags == EXACTFU &&
+ OP(noper) == EXACTFU_SS
+ )
+ )
+ ) {
uc= (U8*)STRING(noper);
e= uc + STR_LEN(noper);
} else {
@@ -2591,6 +2599,7 @@ S_make_trie(pTHX_ RExC_state_t *pRExC_state, regnode *startbranch,
TRIE_BITMAP_SET(trie, LATIN_SMALL_LETTER_SHARP_S);
}
}
+
for ( ; uc < e ; uc += len ) { /* Look at each char in the current
branch */
TRIE_CHARCOUNT(trie)++;