summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-12-07 18:47:34 -0700
committerKarl Williamson <khw@cpan.org>2017-12-11 19:17:44 -0700
commitf8edfb87c2ebbcbe6d91f1cc4cbd0f085d3b44c1 (patch)
tree1f8a544d39672b0fd2766b63583f4b14acca05e0 /sv.c
parentc58971e910419d745ca5a1e6c474d930af17738a (diff)
downloadperl-f8edfb87c2ebbcbe6d91f1cc4cbd0f085d3b44c1.tar.gz
sv.c: White-space only
This outdents some lines that the previous commit removed an enclosing block of.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sv.c b/sv.c
index 2c60d02a71..924a7e3058 100644
--- a/sv.c
+++ b/sv.c
@@ -3548,16 +3548,16 @@ Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extr
* the string, copying and expanding as we go, stopping when we
* get to the part that is invariant the rest of the way down */
- e--;
- while (e >= t) {
- if (NATIVE_BYTE_IS_INVARIANT(*e)) {
- *d-- = *e;
- } else {
- *d-- = UTF8_EIGHT_BIT_LO(*e);
- *d-- = UTF8_EIGHT_BIT_HI(*e);
- }
- e--;
- }
+ e--;
+ while (e >= t) {
+ if (NATIVE_BYTE_IS_INVARIANT(*e)) {
+ *d-- = *e;
+ } else {
+ *d-- = UTF8_EIGHT_BIT_LO(*e);
+ *d-- = UTF8_EIGHT_BIT_HI(*e);
+ }
+ e--;
+ }
if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
/* Update pos. We do it at the end rather than during