diff options
author | Karl Williamson <khw@cpan.org> | 2017-06-07 15:40:33 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-06-07 15:43:37 -0600 |
commit | 27a9d47db34e17e486975d8e76184e7581c869e9 (patch) | |
tree | f052718cdd54b82b6c8907ba87f645020de125c9 /doop.c | |
parent | 08b6664b858b8fd4b5c0c27542763337b6d78e46 (diff) | |
download | perl-27a9d47db34e17e486975d8e76184e7581c869e9.tar.gz |
doop.c: White-space only
Outdent, since the previous commit removed an enclosing block
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 60 |
1 files changed, 30 insertions, 30 deletions
@@ -1138,37 +1138,37 @@ Perl_do_vop(pTHX_ I32 optype, SV *sv, SV *left, SV *right) len = remainder; } #endif - switch (optype) { - case OP_BIT_AND: - while (len--) - *dc++ = *lc++ & *rc++; - *dc = '\0'; - break; - case OP_BIT_XOR: - while (len--) - *dc++ = *lc++ ^ *rc++; - goto mop_up; - case OP_BIT_OR: - while (len--) - *dc++ = *lc++ | *rc++; - mop_up: - len = lensave; - if (rightlen > len) { - if (dc == rc) - SvCUR(sv) = rightlen; - else - sv_catpvn_nomg(sv, rsave + len, rightlen - len); - } - else if (leftlen > len) { - if (dc == lc) - SvCUR(sv) = leftlen; - else - sv_catpvn_nomg(sv, lsave + len, leftlen - len); - } - *SvEND(sv) = '\0'; + switch (optype) { + case OP_BIT_AND: + while (len--) + *dc++ = *lc++ & *rc++; + *dc = '\0'; + break; + case OP_BIT_XOR: + while (len--) + *dc++ = *lc++ ^ *rc++; + goto mop_up; + case OP_BIT_OR: + while (len--) + *dc++ = *lc++ | *rc++; + mop_up: + len = lensave; + if (rightlen > len) { + if (dc == rc) + SvCUR(sv) = rightlen; + else + sv_catpvn_nomg(sv, rsave + len, rightlen - len); + } + else if (leftlen > len) { + if (dc == lc) + SvCUR(sv) = leftlen; + else + sv_catpvn_nomg(sv, lsave + len, leftlen - len); + } + *SvEND(sv) = '\0'; - break; - } + break; + } if (result_needs_to_be_utf8) { sv_utf8_upgrade_nomg(sv); |