The two whitespace changes from
Jim Cromie [Mon, 13 Feb 2006 14:12:41 +0000 (07:12 -0700)]
Subject: arena-rework : consolidated patch
Message-ID: <43F0F649.9040205@gmail.com>
Date: Mon, 13 Feb 2006 14:12:41 -0700

p4raw-id: //depot/perl@27213

sv.c

diff --git a/sv.c b/sv.c
index d599a2f..52395d5 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -42,7 +42,7 @@
  * --jhi
  */
 #define ASSERT_UTF8_CACHE(cache) \
-       STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); } } STMT_END
+    STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); } } STMT_END
 #else
 #define ASSERT_UTF8_CACHE(cache) NOOP
 #endif
@@ -226,7 +226,7 @@ Perl_offer_nice_chunk(pTHX_ void *chunk, U32 chunk_size)
 #define uproot_SV(p) \
     STMT_START {                                       \
        (p) = PL_sv_root;                               \
-       PL_sv_root = (SV*)SvARENA_CHAIN(p);                     \
+       PL_sv_root = (SV*)SvARENA_CHAIN(p);             \
        ++PL_sv_count;                                  \
     } STMT_END