diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-12-13 14:27:08 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-14 14:43:40 +0000 |
commit | 6537fe72dd6d63cc0c7164fec44beb82d2568599 (patch) | |
tree | 32c01336d785c38d130126526438bf4951f89791 /intrpvar.h | |
parent | a58d912c5262ef3032191d4aea207683577527bb (diff) | |
download | perl-6537fe72dd6d63cc0c7164fec44beb82d2568599.tar.gz |
-t taint warnings
Message-ID: <20011214002707.GA10532@blackrider>
(reword the perlrun -t description a bit,
and move the Itaint_warn to the bottom of
the intrpvar.h for binary compatibility)
p4raw-id: //depot/perl@13684
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 501f0d385b..c46c8c1a30 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -4,6 +4,10 @@ /* Don't forget to re-run embed.pl to propagate changes! */ +/* New variables must be added to the very end for binary compatibility. + * XSUB.h provides wrapper functions via perlapi.h that make this + * irrelevant, but not all code may be expected to #include XSUB.h. */ + /* The 'I' prefix is only needed for vars that need appropriate #defines * generated when built with or without MULTIPLICITY. It is also used * to generate the appropriate export list for win32. @@ -504,8 +508,9 @@ PERLVARI(Iencoding, SV*, Nullsv) /* character encoding */ PERLVAR(Idebug_pad, struct perl_debug_pad) /* always needed because of the re extension */ +PERLVAR(Itaint_warn, bool) /* taint warns instead of dying */ + /* New variables must be added to the very end for binary compatibility. * XSUB.h provides wrapper functions via perlapi.h that make this * irrelevant, but not all code may be expected to #include XSUB.h. */ - |