home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / URI / URL / strict.al < prev    next >
Text File  |  1997-12-13  |  205b  |  13 lines

  1. # NOTE: Derived from :lib:URI:URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. sub strict
  5. {
  6.     return $Strict_URL unless @_;
  7.     my $old = $Strict_URL;
  8.     $Strict_URL = $_[0];
  9.     $old;
  10. }
  11.  
  12. 1;
  13.