summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-03-17 21:47:16 -0600
committerKarl Williamson <khw@cpan.org>2019-03-18 10:40:15 -0600
commit2b1ec73b3bcbe92865a58b5bb3eab65ae1389d01 (patch)
tree26c50077de171cb98e8102c22b41ef6344f92d42 /regexec.c
parent2abbd513b87245ddb806e6bc4f59945ecb46dced (diff)
downloadperl-2b1ec73b3bcbe92865a58b5bb3eab65ae1389d01.tar.gz
regexec.c: White-space only
Outdent to reflect removed enclosing block
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/regexec.c b/regexec.c
index cafc6b795a..deecde7c8e 100644
--- a/regexec.c
+++ b/regexec.c
@@ -8725,19 +8725,18 @@ NULL
/* If the lookbehind doesn't start in the actual string, is a
* trivial match failure */
- if (logical) {
- logical = 0;
- sw = 1 - cBOOL(ST.wanted);
- }
- else if (ST.wanted)
- sayNO;
+ if (logical) {
+ logical = 0;
+ sw = 1 - cBOOL(ST.wanted);
+ }
+ else if (ST.wanted)
+ sayNO;
- /* Here, we didn't want it to match, so is actually success
- * */
- next = scan + ARG(scan);
- if (next == scan)
- next = NULL;
- break;
+ /* Here, we didn't want it to match, so is actually success */
+ next = scan + ARG(scan);
+ if (next == scan)
+ next = NULL;
+ break;
}
do_ifmatch: