utf8.c: White-space only
authorKarl Williamson <public@khwilliamson.com>
Fri, 6 Dec 2013 05:19:09 +0000 (22:19 -0700)
committerKarl Williamson <public@khwilliamson.com>
Fri, 6 Dec 2013 17:59:08 +0000 (10:59 -0700)
Rearrange this multi-line conditional to be easier to read.

utf8.c

diff --git a/utf8.c b/utf8.c
index 4c9259c..de86314 100644 (file)
--- a/utf8.c
+++ b/utf8.c
@@ -2477,9 +2477,10 @@ Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
             }
         }
 
-        if (hv &&
-            (svp = hv_fetch(hv, (const char*)p, UNISKIP(uv1), FALSE)) &&
-            (*svp)) {
+        if (hv
+             && (svp = hv_fetch(hv, (const char*)p, UNISKIP(uv1), FALSE))
+             && (*svp))
+         {
             const char *s;
 
              s = SvPV_const(*svp, len);