diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-20 11:29:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-20 11:29:26 +0000 |
commit | 7b0bddfae402018e486a2f1fa0daf4581b85b65b (patch) | |
tree | 15b7cbc8a733cb29f8a8e9286cdb4a6950316953 /perl.h | |
parent | 8ff9a42beba9f4156f50b64fd80480645efd8c5a (diff) | |
download | perl-7b0bddfae402018e486a2f1fa0daf4581b85b65b.tar.gz |
Abolish cop_arybase. Signal a non zero $[ with a hint flag, and store
the value in the hints structure used for %^H.
p4raw-id: //depot/perl@28250
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4215,7 +4215,7 @@ enum { /* pass one of these to get_vtbl */ #define HINT_STRICT_REFS 0x00000002 /* strict pragma */ #define HINT_LOCALE 0x00000004 /* locale pragma */ #define HINT_BYTES 0x00000008 /* bytes pragma */ -/* #define HINT_notused10 0x00000010 */ +#define HINT_ARYBASE 0x00000010 /* $[ is non-zero */ /* Note: 20,40,80 used for NATIVE_HINTS */ /* currently defined by vms/vmsish.h */ |