diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-26 13:22:19 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:58 -0600 |
commit | 233ca360345239b7e19039f64bb29a2d310015c6 (patch) | |
tree | 850c4ff26e7c85da7c7c257351cd70b4b33e2bf8 | |
parent | a46469e6220cfe0dffc514630041b121cc4d5418 (diff) | |
download | perl-233ca360345239b7e19039f64bb29a2d310015c6.tar.gz |
toke.c: white space only
-rw-r--r-- | toke.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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)); |