summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-07 06:26:30 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-07 06:26:30 +0000
commit3c77ea2bace63b1ad27d15a6366cb938bdd158cb (patch)
tree4f7833e63f5047ba704288bc8311e27b7a7481f0 /utf8.h
parent7fa2f4f15785dd46abca32ba3f3cb3aabf0263dd (diff)
downloadperl-3c77ea2bace63b1ad27d15a6366cb938bdd158cb.tar.gz
allow 64-bit utf8-encoded integers (from Ilya Zakharevich)
p4raw-id: //depot/perl@5011
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index e864316fac..8f69fef91e 100644
--- a/utf8.h
+++ b/utf8.h
@@ -18,7 +18,8 @@ EXTCONST unsigned char PL_utf8skip[] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* scripts */
-3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,7,8, /* cjk etc. */
+3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6, /* cjk etc. */
+7,13, /* Perl extended (not UTF-8). Up to 72bit allowed (64-bit + reserved). */
};
#else
EXTCONST unsigned char PL_utf8skip[];