From: Stephen McCamant Date: Mon, 22 Jun 1998 21:19:43 +0000 (-0500) Subject: Inheritance of B:: classes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=276493cb78ba879defeed992c4543a6fe30f98ce;p=p5sagit%2Fp5-mst-13.2.git Inheritance of B:: classes Message-Id: p4raw-id: //depot/perl@1200 --- diff --git a/ext/B/B.pm b/ext/B/B.pm index 8545c5c..5897ef1 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -31,7 +31,8 @@ use strict; @B::GV::ISA = 'B::PVMG'; @B::HV::ISA = 'B::PVMG'; @B::CV::ISA = 'B::PVMG'; -@B::IO::ISA = 'B::CV'; +@B::IO::ISA = 'B::PVMG'; +@B::FM::ISA = 'B::CV'; @B::OP::ISA = 'B::OBJECT'; @B::UNOP::ISA = 'B::OP';