Skip to content

Commit 3cf2df0

Browse files
committed
utf8.c: White-space only
Remove excess indentation
1 parent fadda7d commit 3cf2df0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utf8.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ Perl__utf8n_to_uvchr_msgs_helper(const U8 *s,
15261526
* separate.
15271527
*
15281528
* A convenience macro that matches either of the too-short conditions. */
1529-
# define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
1529+
#define UTF8_GOT_TOO_SHORT (UTF8_GOT_SHORT|UTF8_GOT_NON_CONTINUATION)
15301530

15311531
/* Check for overflow. The algorithm requires us to not look past the end
15321532
* of the current character, even if partial, so the upper limit is 's' */
@@ -1538,8 +1538,8 @@ Perl__utf8n_to_uvchr_msgs_helper(const U8 *s,
15381538
* point value. Simply see if it is expressible in fewer bytes. Otherwise
15391539
* we must look at the UTF-8 byte sequence itself to see if it is for an
15401540
* overlong */
1541-
if ( ( LIKELY(! possible_problems)
1542-
&& UNLIKELY(expectlen > (STRLEN) OFFUNISKIP(uv)))
1541+
if ( ( LIKELY(! possible_problems)
1542+
&& UNLIKELY(expectlen > (STRLEN) OFFUNISKIP(uv)))
15431543
|| ( UNLIKELY(possible_problems)
15441544
&& ( UNLIKELY(! UTF8_IS_START(*s0))
15451545
|| (UNLIKELY(0 < is_utf8_overlong(s0, s - s0))))))

0 commit comments

Comments
 (0)