home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / EDITOR / NVI179B / NVI179B.ZIP / perl_scripts / forall.pl next >
Text File  |  1996-07-02  |  191b  |  11 lines

  1. sub forall {
  2.   my ($code) = shift;
  3.   my ($i) = $VI::StartLine-1;
  4.   while (++$i <= $VI::StopLine) {
  5.     $_ = $curscr->GetLine($i);
  6.     VI::SetLine($VI::ScreenId, $i, $_) if(&$code);
  7.   }
  8. }
  9.  
  10. 1;
  11.