This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
utf8.h: Reformat a couple of table lines
authorKarl Williamson <khw@cpan.org>
Fri, 30 Oct 2015 02:24:14 +0000 (20:24 -0600)
committerKarl Williamson <khw@cpan.org>
Mon, 9 Nov 2015 17:53:32 +0000 (10:53 -0700)
This is just an aesthetic issue, hopefully making things clearer.

utf8.h

diff --git a/utf8.h b/utf8.h
index dcc9b86..ef11af9 100644 (file)
--- a/utf8.h
+++ b/utf8.h
@@ -116,8 +116,10 @@ EXTCONST unsigned char PL_utf8skip[] = {
 /* 0xD0 */ 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* U+0400 to U+07FF */
 /* 0xE0 */ 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, /* U+0800 to U+FFFF */
 /* 0xF0 */ 4,4,4,4,4,4,4,4,5,5,5,5,6,6,            /* above BMP to 2**31 - 1 */
-/* 0xFE */ 7,13, /* Perl extended (never was official UTF-8).  Up to 72bit
-                   allowed (64-bit + reserved). */
+           /* Perl extended (never was official UTF-8).  Up to 36 bit */
+/* 0xFE */                             7,
+           /* More extended, Up to 72 bits (64-bit + reserved) */
+/* 0xFF */                               13
 };
 #else
 EXTCONST unsigned char PL_utf8skip[];