summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-26 13:22:19 -0700
committerKarl Williamson <public@khwilliamson.com>2013-08-29 09:55:58 -0600
commit233ca360345239b7e19039f64bb29a2d310015c6 (patch)
tree850c4ff26e7c85da7c7c257351cd70b4b33e2bf8
parenta46469e6220cfe0dffc514630041b121cc4d5418 (diff)
downloadperl-233ca360345239b7e19039f64bb29a2d310015c6.tar.gz
toke.c: white space only
-rw-r--r--toke.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 388d3f09ee..73f35909b2 100644
--- a/toke.c
+++ b/toke.c
@@ -3769,7 +3769,9 @@ S_scan_const(pTHX_ char *start)
* routine that does the conversion checks for errors like
* malformed utf8 */
- const UV nextuv = (this_utf8) ? utf8n_to_uvchr((U8*)s, send - s, &len, 0) : (UV) ((U8) *s);
+ const UV nextuv = (this_utf8)
+ ? utf8n_to_uvchr((U8*)s, send - s, &len, 0)
+ : (UV) ((U8) *s);
const STRLEN need = UNISKIP(NATIVE_TO_UNI(nextuv));
if (!has_utf8) {
SvCUR_set(sv, d - SvPVX_const(sv));