summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-19 05:55:52 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-19 05:55:52 +0000
commitd98f61e7d51abbefcd3982d605d4bd09ed4ddd7f (patch)
tree0fe4b7cb5a932e8e59433ecae8bcc077da072ed3 /pp_ctl.c
parent71a29c3c6e68e84b4c2fa366c4878918712829a9 (diff)
downloadperl-d98f61e7d51abbefcd3982d605d4bd09ed4ddd7f.tar.gz
support for C<use vmsish 'hushed'>; move VMSISH_EXIT out of
op_private (from Charles Lane <lane@DUPHY4.Physics.Drexel.Edu>) p4raw-id: //depot/perl@5816
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index cee753a125..00fa47673a 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2463,8 +2463,8 @@ PP(pp_exit)
anum = 0;
else {
anum = SvIVx(POPs);
-#ifdef VMSISH_EXIT
- if (anum == 1 && VMSISH_EXIT)
+#ifdef VMS
+ if (anum == 1 && (PL_op->op_private & OPpEXIT_VMSISH))
anum = 0;
#endif
}