I think it's time to call the utf8 code non-test.
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 4 Dec 2001 01:26:38 +0000 (01:26 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 4 Dec 2001 01:26:38 +0000 (01:26 +0000)
p4raw-id: //depot/perl@13450

utf8.c

diff --git a/utf8.c b/utf8.c
index 6408b60..3a5c1ec 100644 (file)
--- a/utf8.c
+++ b/utf8.c
@@ -50,7 +50,7 @@ Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
        *d++ = UTF_TO_NATIVE(uv);
        return d;
     }
-#if defined(EBCDIC) || 1 /* always for testing */
+#if defined(EBCDIC)
     else {
        STRLEN len  = UNISKIP(uv);
        U8 *p = d+len-1;