diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-11 06:01:28 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-11 06:01:28 +0000 |
commit | 6c3182a5d146d89e95f0ea81076255af93dd834f (patch) | |
tree | 962af967f54280e61ec69d2a695c9949fc915f4f /intrpvar.h | |
parent | 02506efeee07f72c4573c458102aba9511f70372 (diff) | |
download | perl-6c3182a5d146d89e95f0ea81076255af93dd834f.tar.gz |
Add missing intrpvar clonings to perl_clone.
Also move the IDBassertion to the end since there's
no particular reason to break bincompat for that.
p4raw-id: //depot/perl@18907
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index c0208982f6..eb7d0da143 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -122,7 +122,6 @@ PERLVAR(IDBsub, GV *) PERLVAR(IDBsingle, SV *) PERLVAR(IDBtrace, SV *) PERLVAR(IDBsignal, SV *) -PERLVAR(IDBassertion, SV *) PERLVAR(Ilineary, AV *) /* lines of script for debugger */ PERLVAR(Idbargs, AV *) /* args to call listed by caller function */ @@ -502,6 +501,8 @@ PERLVAR(Iunicode, U32) /* Unicode features: $ENV{PERL_UNICODE} or -C */ PERLVAR(Isignals, U32) /* Using which pre-5.8 signals */ +PERLVAR(IDBassertion, SV *) + /* Don't forget to add your variable also to perl_clone()! */ /* New variables must be added to the very end, before this comment, |