Update CPANPLUS to 0.87_02
[p5sagit/p5-mst-13.2.git] / intrpvar.h
index 487576a..7a05268 100644 (file)
@@ -533,21 +533,12 @@ PERLVARI(Iglob_index,     int,    0)
 
 PERLVAR(Iparser,       yy_parser *)    /* current parser state */
 
-#ifdef MULTIPLICITY
-/* For binary compatibility, keep the interpreter structure the same.
-   However, we no longer use this entry.  */
-PERLVAR(Ibitcount,     char *)
-#else
-/* For binary compatibility, need to retain an extern char *PL_bitcount.
-   So make it point to the compile time generated array.  */
-PERLVARI(Ibitcount,    char *, (char *)PL_bitcount_array)
-#endif
-
 /* Array of signal handlers, indexed by signal number, through which the C
    signal handler dispatches.  */
 PERLVAR(Ipsig_ptr, SV**)
 /* Array of names of signals, indexed by signal number, for (re)use as the first
-   argument to a signal handler.   */
+   argument to a signal handler.   Only one block of memory is allocated for
+   both psig_name and psig_ptr.  */
 PERLVAR(Ipsig_name, SV**)              
 
 #if defined(PERL_IMPLICIT_SYS)