You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2001/12/14 05:56:17 UTC

cvs commit: modperl-docs/src/user/compat compat.pod

stas        01/12/13 20:56:17

  Modified:    src/user/compat compat.pod
  Log:
  Apache->gensym now lives in compat
  
  Revision  Changes    Path
  1.2       +15 -0     modperl-docs/src/user/compat/compat.pod
  
  Index: compat.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/user/compat/compat.pod,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- compat.pod	2001/11/26 03:28:46	1.1
  +++ compat.pod	2001/12/14 04:56:17	1.2
  @@ -22,10 +22,25 @@
   This document explains what APIs have changed and what new APIs should
   be used instead.
   
  +=head1 Apache methods
  +
  +=head2 gensym
  +
  +Since Perl 5.6.1 filehandlers are autovivified and there is no need
  +for gensym() function, since now it can be done with:
  +
  +  open my $fh, "foo" or die $!;
  +
  +The C function modperl_perl_gensym() is available for XS/C extension
  +writers, though.
  +
   =head1 Apache::Registry and Apache::PerlRun
   
   =head1 Apache::File
   
  +=head1 Apache::StatINC
  +
  +C<Apache::StatINC> has been replaced by C<Apache::Reload>.
   
   =head1 Maintainers
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org