summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-25 19:26:50 -0700
committerKarl Williamson <public@khwilliamson.com>2013-08-29 09:55:56 -0600
commitdcd27b3c5c763b20c71d9754ec4e7d1c7ef463cc (patch)
treec90fee48813bfeca7a3a6f172258323a2630f3e1 /utf8.c
parentbd70aaaf553eae9630ec958c29bcac4a1a55888c (diff)
downloadperl-dcd27b3c5c763b20c71d9754ec4e7d1c7ef463cc.tar.gz
utf8.c: Move comment to where makes more sense
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utf8.c b/utf8.c
index 3981fe8062..e391f637c0 100644
--- a/utf8.c
+++ b/utf8.c
@@ -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 */