summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-01-15 20:13:45 -0700
committerKarl Williamson <khw@cpan.org>2015-01-16 13:17:23 -0700
commitbc1644f1ea23213883e5ccb511a8df05762b7e39 (patch)
tree0a4275593d5093f9e25ead0d53219d81feea13ef /regcomp.c
parent7475a24fb1bcc3d031d46c3a83616671479634f5 (diff)
downloadperl-bc1644f1ea23213883e5ccb511a8df05762b7e39.tar.gz
regcomp.c: White-space only
Indent inside a newly formed block
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/regcomp.c b/regcomp.c
index 2a75b240e3..b62c30d52a 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -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