summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-01 20:29:30 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-01 20:29:30 +0000
commit393fec973b1b95a178b4b9600173880d9f93debf (patch)
treec3d4ec71f5df9352cf1aba3acb8afd24acb9ebe3 /utf8.h
parenta86f0dc98a98470272f57769cfd209896e37a52f (diff)
downloadperl-393fec973b1b95a178b4b9600173880d9f93debf.tar.gz
HINT_UTF8 is not propagated to the op tree anymore; add a
perlunicode.pod that reflects changes to unicode support so far p4raw-id: //depot/perl@4941
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.h b/utf8.h
index 578abc7783..96ae621334 100644
--- a/utf8.h
+++ b/utf8.h
@@ -26,7 +26,7 @@ EXTCONST unsigned char PL_utf8skip[];
END_EXTERN_C
-#define IN_UTF8 (PL_curcop->op_private & HINT_UTF8)
+/*#define IN_UTF8 (PL_curcop->op_private & HINT_UTF8)*/
#define IN_BYTE (PL_curcop->op_private & HINT_BYTE)
#define DO_UTF8(sv) (SvUTF8(sv) && !IN_BYTE)