This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate with Sarathy.
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 21 Feb 2000 01:37:35 +0000 (01:37 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 21 Feb 2000 01:37:35 +0000 (01:37 +0000)
p4raw-id: //depot/cfgperl@5176

1  2 
perlapi.c
pod/perldelta.pod

diff --combined perlapi.c
index f082498,c4653cc..c4653cc
mode 100755,100644..100755
+++ b/perlapi.c
@@@ -3589,6 -3589,7 +3589,7 @@@ Perl_magic_dump(pTHXo_ MAGIC *mg
  {
      ((CPerlObj*)pPerl)->Perl_magic_dump(mg);
  }
+ #if defined(PERL_FLEXIBLE_EXCEPTIONS)
  
  #undef  Perl_default_protect
  void*
@@@ -3609,6 -3610,7 +3610,7 @@@ Perl_vdefault_protect(pTHXo_ volatile J
  {
      return ((CPerlObj*)pPerl)->Perl_vdefault_protect(je, excpt, body, args);
  }
+ #endif
  
  #undef  Perl_reginitcolors
  void
@@@ -3864,12 -3866,16 +3866,16 @@@ Perl_ptr_table_split(pTHXo_ PTR_TBL_t *
  #if defined(PERL_IN_PERL_C) || defined(PERL_DECL_PROT)
  #  if defined(IAMSUID)
  #  endif
+ #if defined(PERL_FLEXIBLE_EXCEPTIONS)
+ #endif
  #  if defined(USE_THREADS)
  #  endif
  #endif
  #if defined(PERL_IN_PP_C) || defined(PERL_DECL_PROT)
  #endif
  #if defined(PERL_IN_PP_CTL_C) || defined(PERL_DECL_PROT)
+ #if defined(PERL_FLEXIBLE_EXCEPTIONS)
+ #endif
  #endif
  #if defined(PERL_IN_PP_HOT_C) || defined(PERL_DECL_PROT)
  #endif
diff --combined pod/perldelta.pod
@@@ -640,8 -640,7 +640,8 @@@ Unfortunately bit arithmetics (&, |, ^
  64-bit clean, they are explictly forced to be 32-bit because of
  tangled backward compatibility issues.  This limitation is subject to
  change.  Bit arithmetics for bit vector scalars (created by vec()) are
 -not limited in their width.
 +not limited in their width, you can use the & | ^ ~ operators on such
 +scalars.
  
  Last but not least: note that due to Perl's habit of always using
  floating point numbers the quads are still not true integers.
@@@ -862,7 -861,7 +862,7 @@@ it emits optional warnings when concate
  with another number.
  
  This behavior must be specifically enabled when running Configure.
- See L<INSTALL> and L<README.Y2K>.
+ See F<INSTALL> and F<README.Y2K>.
  
  =head1 Significant bug fixes