This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlpodspec: Nits
[perl5.git] / pad.h
diff --git a/pad.h b/pad.h
index 7ee8a1c..1f86248 100644 (file)
--- a/pad.h
+++ b/pad.h
@@ -34,7 +34,8 @@ typedef U64TYPE PADOFFSET;
 struct padlist {
     SSize_t    xpadl_max;      /* max index for which array has space */
     PAD **     xpadl_alloc;    /* pointer to beginning of array of AVs */
-    PADNAMELIST*xpadl_outid;   /* Padnamelist of outer pad; used as ID */
+    U32                xpadl_id;       /* Semi-unique ID, shared between clones */
+    U32                xpadl_outid;    /* ID of outer pad */
 };
 
 struct padnamelist {
@@ -53,7 +54,7 @@ struct padnamelist {
 #endif
 
 #if !defined(PERL_PADNAME_MINIMAL) && !defined(PERL_PADNAME_ALIGNED)
-#  define PERL_PADNAME_ALIGNED
+#  define PERL_PADNAME_MINIMAL
 #endif
 
 #define _PADNAME_BASE \
@@ -514,11 +515,5 @@ of a string/length pair.
     Perl_pad_findmy_pvn(aTHX_ STR_WITH_LEN(name), flags)
 
 /*
- * Local variables:
- * c-indentation-style: bsd
- * c-basic-offset: 4
- * indent-tabs-mode: nil
- * End:
- *
  * ex: set ts=8 sts=4 sw=4 et:
  */