Outdent some code that had a surrounding block removed in the previous
commit.
Newx(d, (*lenp) + 1, U8);
converted_start = d;
- while (s < send) {
- U8 c = *s++;
- if (! UTF8_IS_INVARIANT(c)) {
+ while (s < send) {
+ U8 c = *s++;
+ if (! UTF8_IS_INVARIANT(c)) {
/* Then it is multi-byte encoded. If the code point is above 0xFF,
* have to stop now */
}
}
- c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
- s++;
- }
- *d++ = c;
+ c = EIGHT_BIT_UTF8_TO_NATIVE(c, *s);
+ s++;
}
+ *d++ = c;
+ }
/* Here, converted the whole of the input */
*is_utf8p = FALSE;