diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-25 19:26:50 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:56 -0600 |
commit | dcd27b3c5c763b20c71d9754ec4e7d1c7ef463cc (patch) | |
tree | c90fee48813bfeca7a3a6f172258323a2630f3e1 /utf8.c | |
parent | bd70aaaf553eae9630ec958c29bcac4a1a55888c (diff) | |
download | perl-dcd27b3c5c763b20c71d9754ec4e7d1c7ef463cc.tar.gz |
utf8.c: Move comment to where makes more sense
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -642,13 +642,13 @@ Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) goto malformed; } + /* Here is not a continuation byte, nor an invariant. The only thing left + * is a start byte (possibly for an overlong) */ + #ifdef EBCDIC uv = NATIVE_UTF8_TO_I8(uv); #endif - /* Here is not a continuation byte, nor an invariant. The only thing left - * is a start byte (possibly for an overlong) */ - /* Remove the leading bits that indicate the number of bytes in the * character's whole UTF-8 sequence, leaving just the bits that are part of * the value */ |