From: Philip Newton Date: Sun, 7 Apr 2002 07:51:49 +0000 (+0200) Subject: Re: Change 15762: As noted by Philip Newton: nothing wrong with BOM, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2a20b9da18f270057becdb34da1f166324bd9486;p=p5sagit%2Fp5-mst-13.2.git Re: Change 15762: As noted by Philip Newton: nothing wrong with BOM, Message-ID: <1dnvau4j684hke2igk990f01nit8r2811s@4ax.com> p4raw-id: //depot/perl@15777 --- diff --git a/utf8.c b/utf8.c index 9f2c4fb..1b13809 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)) )