diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-17 07:43:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-17 07:43:08 +0000 |
commit | 24d3c5181312bc6d6fc2f89a6710968ed97b31dc (patch) | |
tree | 40b5bc457f0c2ca2999c3004c986e85e71885f33 /thrdvar.h | |
parent | 95dfd3ab5ca3e72850832fe8585dd8f0b3fc729f (diff) | |
download | perl-24d3c5181312bc6d6fc2f89a6710968ed97b31dc.tar.gz |
ensure PL_dirty is reinit-ed properly under -DMULTIPLICITY
p4raw-id: //depot/perl@2244
Diffstat (limited to 'thrdvar.h')
-rw-r--r-- | thrdvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ PERLVAR(Trestartop, OP *) /* propagating an error from croak? */ PERLVARI(Tcurcop, COP * VOL, &PL_compiling) PERLVAR(Tin_eval, VOL int) /* trap "fatal" errors? */ PERLVAR(Tdelaymagic, int) /* ($<,$>) = ... */ -PERLVAR(Tdirty, bool) /* in the middle of tearing things down? */ +PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */ PERLVAR(Tlocalizing, int) /* are we processing a local() list? */ PERLVAR(Tcurstack, AV *) /* THE STACK */ |