diff options
author | Karl Williamson <khw@cpan.org> | 2019-03-17 21:47:16 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-03-18 10:40:15 -0600 |
commit | 2b1ec73b3bcbe92865a58b5bb3eab65ae1389d01 (patch) | |
tree | 26c50077de171cb98e8102c22b41ef6344f92d42 | |
parent | 2abbd513b87245ddb806e6bc4f59945ecb46dced (diff) | |
download | perl-2b1ec73b3bcbe92865a58b5bb3eab65ae1389d01.tar.gz |
regexec.c: White-space only
Outdent to reflect removed enclosing block
-rw-r--r-- | regexec.c | 23 |
1 files changed, 11 insertions, 12 deletions
@@ -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: |