summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorPhilip Newton <pne@cpan.org>2002-04-07 09:51:49 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-07 14:27:06 +0000
commit2a20b9da18f270057becdb34da1f166324bd9486 (patch)
treecaf75be9e1878cd37b97fcac518cc8682aa2a5b3 /utf8.c
parentdd36d13c89140c2d9d7954b9f1de583003154c13 (diff)
downloadperl-2a20b9da18f270057becdb34da1f166324bd9486.tar.gz
Re: Change 15762: As noted by Philip Newton: nothing wrong with BOM,
Message-ID: <1dnvau4j684hke2igk990f01nit8r2811s@4ax.com> p4raw-id: //depot/perl@15777
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 9f2c4fb2ca..1b13809dcd 100644
--- a/utf8.c
+++ b/utf8.c
@@ -67,7 +67,7 @@ Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
((uv & 0xFFFE) == 0xFFFE && /* Either FFFE or FFFF. */
!(flags & UNICODE_ALLOW_FFFF))) &&
/* UNICODE_ALLOW_SUPER includes
- * FFFFs beyond 0x10FFFF. */
+ * FFFEs and FFFFs beyond 0x10FFFF. */
((uv <= PERL_UNICODE_MAX) ||
!(flags & UNICODE_ALLOW_SUPER))
)