summaryrefslogtreecommitdiff
path: root/perl.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 /perl.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 'perl.h')
-rw-r--r--perl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 518f4b3c5a..d89f3a810d 100644
--- a/perl.h
+++ b/perl.h
@@ -2467,8 +2467,8 @@ enum { /* pass one of these to get_vtbl */
#define HINT_INTEGER 0x00000001
#define HINT_STRICT_REFS 0x00000002
/* #define HINT_notused4 0x00000004 */
-#define HINT_UTF8 0x00000008
-#define HINT_BYTE 0x00000010
+#define HINT_BYTE 0x00000008
+/* #define HINT_notused10 0x00000010 */
/* Note: 20,40,80 used for NATIVE_HINTS */
#define HINT_BLOCK_SCOPE 0x00000100
@@ -2487,6 +2487,7 @@ enum { /* pass one of these to get_vtbl */
#define HINT_RE_EVAL 0x00200000
#define HINT_FILETEST_ACCESS 0x00400000
+#define HINT_UTF8 0x00800000
/* Various states of an input record separator SV (rs, nrs) */
#define RsSNARF(sv) (! SvOK(sv))