summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-08-23 10:14:09 +0100
committerNicholas Clark <nick@ccl4.org>2010-08-23 10:14:09 +0100
commit6f89893b2484795e1e84a5309f71d72cb34d2640 (patch)
tree372edf1086a2f3ca502ee1602cd570f959d35096 /makedef.pl
parentc01d5d96cd2a8d6938b20477b5710092fce17d66 (diff)
downloadperl-6f89893b2484795e1e84a5309f71d72cb34d2640.tar.gz
In makedef.pl, remove a redundant check for MULTIPLICITY.
Originally the else block was taken when MULTIPLICITY was defined, the if block being taken for PERL_OBJECT. 6f4183fe04888927 (change 4878) made the if true for PERL_OBJECT or MULTIPLICITY, rendering this check for MULTIPLICITY vestigial.
Diffstat (limited to 'makedef.pl')
-rw-r--r--makedef.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/makedef.pl b/makedef.pl
index bb60643e02..810a4c80ec 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -1241,10 +1241,8 @@ else {
my $glob = readvar($perlvars_h);
emit_symbols $glob;
}
- unless ($define{'MULTIPLICITY'}) {
- my $glob = readvar($intrpvar_h);
- emit_symbols $glob;
- }
+ my $glob = readvar($intrpvar_h);
+ emit_symbols $glob;
}
sub try_symbol {