diff options
author | Karl Williamson <khw@cpan.org> | 2015-01-15 20:13:45 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-01-16 13:17:23 -0700 |
commit | bc1644f1ea23213883e5ccb511a8df05762b7e39 (patch) | |
tree | 0a4275593d5093f9e25ead0d53219d81feea13ef /regcomp.c | |
parent | 7475a24fb1bcc3d031d46c3a83616671479634f5 (diff) | |
download | perl-bc1644f1ea23213883e5ccb511a8df05762b7e39.tar.gz |
regcomp.c: White-space only
Indent inside a newly formed block
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -14899,27 +14899,27 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth, /* We can optimize A-Z or a-z, but not if they could match * something like the KELVIN SIGN under /i (/a means they * can't) */ - if (prevvalue == 'A') { - if (value == 'Z' + if (prevvalue == 'A') { + if (value == 'Z' #ifdef EBCDIC - && literal_endpoint == 2 + && literal_endpoint == 2 #endif - ) { - arg = (FOLD) ? _CC_ALPHA : _CC_UPPER; - op = POSIXA; + ) { + arg = (FOLD) ? _CC_ALPHA : _CC_UPPER; + op = POSIXA; + } } - } - else if (prevvalue == 'a') { - if (value == 'z' + else if (prevvalue == 'a') { + if (value == 'z' #ifdef EBCDIC - && literal_endpoint == 2 + && literal_endpoint == 2 #endif - ) { - arg = (FOLD) ? _CC_ALPHA : _CC_LOWER; - op = POSIXA; + ) { + arg = (FOLD) ? _CC_ALPHA : _CC_LOWER; + op = POSIXA; + } } } - } } /* Here, we have changed <op> away from its initial value iff we found |