diff options
author | Larry Wall <larry@wall.org> | 1998-07-24 05:44:33 +0000 |
---|---|---|
committer | Larry Wall <larry@wall.org> | 1998-07-24 05:44:33 +0000 |
commit | aabe120930d41c5f8be27a30a8cc304ccf08bac7 (patch) | |
tree | 610356407b37a4041ea8bcaf44571579b2da5613 /vms | |
parent | 4a54e6e6ff63ed0137f3ebcbfb084760697dbcfe (diff) | |
download | perl-aabe120930d41c5f8be27a30a8cc304ccf08bac7.tar.gz |
Here are the long-expected Unicode/UTF-8 modifications.
p4raw-id: //depot/utfperl@1651
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vmsish.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index 228a054996..e74c7fbc2d 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -200,9 +200,9 @@ #define COMPLEX_STATUS 1 /* We track both "POSIX" and VMS values */ #define HINT_V_VMSISH 24 -#define HINT_M_VMSISH_STATUS 0x01000000 /* system, $? return VMS status */ -#define HINT_M_VMSISH_EXIT 0x02000000 /* exit(1) ==> SS$_NORMAL */ -#define HINT_M_VMSISH_TIME 0x04000000 /* times are local, not UTC */ +#define HINT_M_VMSISH_STATUS 0x20000000 /* system, $? return VMS status */ +#define HINT_M_VMSISH_EXIT 0x40000000 /* exit(1) ==> SS$_NORMAL */ +#define HINT_M_VMSISH_TIME 0x80000000 /* times are local, not UTC */ #define NATIVE_HINTS (PL_hints >> HINT_V_VMSISH) /* used in op.c */ #define TEST_VMSISH(h) (PL_curcop->op_private & ((h) >> HINT_V_VMSISH)) |