diff options
author | Philip Newton <pne@cpan.org> | 2002-04-07 09:51:49 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-07 14:27:06 +0000 |
commit | 2a20b9da18f270057becdb34da1f166324bd9486 (patch) | |
tree | caf75be9e1878cd37b97fcac518cc8682aa2a5b3 /utf8.c | |
parent | dd36d13c89140c2d9d7954b9f1de583003154c13 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) ) |