diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-03-14 14:51:50 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-03-14 14:58:06 -0600 |
commit | 1f9f7d4c3c10c40dc95da009731647d933d97d58 (patch) | |
tree | 2eaec5287d58278da4cde0214a32563268c6a5dd /utf8.c | |
parent | eb0925341cc65ce6ce57503ec0ab97cdad39dc98 (diff) | |
download | perl-1f9f7d4c3c10c40dc95da009731647d933d97d58.tar.gz |
White-space only; properly indent newly formed blocks
The previous commit added braces forming blocks. This indents the
contents of those blocks.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -3723,22 +3723,22 @@ Perl__swash_to_invlist(pTHX_ SV* const swash) invlist = _new_invlist(0); } else { - l = (U8 *) after_strtol; + l = (U8 *) after_strtol; - /* Get the 0th element, which is needed to setup the inversion list */ - element0 = (UV) Strtoul((char *)l, &after_strtol, 10); - l = (U8 *) after_strtol; - invlist = _setup_canned_invlist(elements, element0, &other_elements_ptr); - elements--; + /* Get the 0th element, which is needed to setup the inversion list */ + element0 = (UV) Strtoul((char *)l, &after_strtol, 10); + l = (U8 *) after_strtol; + invlist = _setup_canned_invlist(elements, element0, &other_elements_ptr); + elements--; - /* Then just populate the rest of the input */ - while (elements-- > 0) { - if (l > lend) { - Perl_croak(aTHX_ "panic: Expecting %"UVuf" more elements than available", elements); + /* Then just populate the rest of the input */ + while (elements-- > 0) { + if (l > lend) { + Perl_croak(aTHX_ "panic: Expecting %"UVuf" more elements than available", elements); + } + *other_elements_ptr++ = (UV) Strtoul((char *)l, &after_strtol, 10); + l = (U8 *) after_strtol; } - *other_elements_ptr++ = (UV) Strtoul((char *)l, &after_strtol, 10); - l = (U8 *) after_strtol; - } } } else { |