You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2001/02/07 11:00:53 UTC

cvs commit: embperl Embperl.pm

richter     01/02/07 02:00:53

  Modified:    .        Embperl.pm
  Log:
  fixed a typo
  
  Revision  Changes    Path
  1.141     +2 -2      embperl/Embperl.pm
  
  Index: Embperl.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pm,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -u -r1.140 -r1.141
  --- Embperl.pm	2001/02/07 08:20:40	1.140
  +++ Embperl.pm	2001/02/07 10:00:53	1.141
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: Embperl.pm,v 1.140 2001/02/07 08:20:40 richter Exp $
  +#   $Id: Embperl.pm,v 1.141 2001/02/07 10:00:53 richter Exp $
   #
   ###################################################################################
   
  @@ -844,7 +844,7 @@
       
       if (exists ($$req{'bless'})) 
           {
  -        bless $r, $$req{'bless'} 
  +        bless $r, $$req{'bless'} ;
           warn "\@ISA corrupted HTML::Embperl::Req must be a base class of $$req{'bless'}" if (!$r -> isa ('HTML::Embperl::Req')) ; 
           }