diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-10 12:09:39 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-10 12:09:39 +0000 |
commit | f8565a6682ea6c56c471a8b67893fb36b404e18f (patch) | |
tree | d18205fdd3f0cf1cbfa4682631b06660ac20718b /makedef.pl | |
parent | c94115d8a8e2e3c3d1a5486519667eba8297650c (diff) | |
download | perl-f8565a6682ea6c56c471a8b67893fb36b404e18f.tar.gz |
Tweak change 27457 - make PL_lasttoke MAD only, but teach makedef.pl
about MADness (and unMADness - maybe there is a special word for that)
p4raw-id: //depot/perl@27460
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/makedef.pl b/makedef.pl index ab3b2c416d..5b4f930260 100644 --- a/makedef.pl +++ b/makedef.pl @@ -837,10 +837,16 @@ unless ($define{'PERL_TRACK_MEMPOOL'}) { )]; } -unless ($define{'PERL_MAD'}) { +if ($define{'PERL_MAD'}) { + skip_symbols [qw( + PL_nextval + PL_nexttype + )]; +} else { skip_symbols [qw( PL_madskills PL_xmlfp + PL_lasttoke Perl_pad_peg Perl_xmldump_indent Perl_xmldump_vindent |