summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-01-28 12:44:29 -0700
committerKarl Williamson <public@khwilliamson.com>2012-02-04 16:29:32 -0700
commita9d188b3497f7a6fe7fe9b203df96d3017dda4a4 (patch)
tree869d1aa4d2180019c4e60d700b3695fb51223bce /utf8.c
parentf90a9a0230170cc0798e2854e90f0c0314e6c23b (diff)
downloadperl-a9d188b3497f7a6fe7fe9b203df96d3017dda4a4.tar.gz
utf8.c: white-space only
This adds an indent now that the code is in a newly created block
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/utf8.c b/utf8.c
index c9f2c9ad50..e61f5746ab 100644
--- a/utf8.c
+++ b/utf8.c
@@ -2899,15 +2899,15 @@ S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
}
else { /* Other tables are in hex, and are the correct result
without tweaking */
- flags = PERL_SCAN_SILENT_ILLDIGIT
- | PERL_SCAN_DISALLOW_PREFIX
- | PERL_SCAN_SILENT_NON_PORTABLE;
- numlen = lend - l;
- *val = grok_hex((char *)l, &numlen, &flags, NULL);
- if (numlen)
- l += numlen;
- else
- *val = 0;
+ flags = PERL_SCAN_SILENT_ILLDIGIT
+ | PERL_SCAN_DISALLOW_PREFIX
+ | PERL_SCAN_SILENT_NON_PORTABLE;
+ numlen = lend - l;
+ *val = grok_hex((char *)l, &numlen, &flags, NULL);
+ if (numlen)
+ l += numlen;
+ else
+ *val = 0;
}
}
else {