From 176fe009d87e3a7dbf597e083a7c6376db79446c Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 5 Dec 2013 22:19:09 -0700 Subject: [PATCH] utf8.c: White-space only Rearrange this multi-line conditional to be easier to read. --- utf8.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utf8.c b/utf8.c index 4c9259c..de86314 100644 --- 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); -- 2.7.4