Change 32944 by [EMAIL PROTECTED] on 2008/01/10 23:55:40
Better descriptions for PL_regex_pad and PL_regex_padav.
Affected files ...
... //depot/perl/intrpvar.h#230 edit
Differences ...
==== //depot/perl/intrpvar.h#230 (text) ====
Index: perl/intrpvar.h
--- perl/intrpvar.h#229~32681~ 2007-12-20 13:52:06.000000000 -0800
+++ perl/intrpvar.h 2008-01-10 15:55:40.000000000 -0800
@@ -561,9 +561,12 @@
#endif
#if defined(USE_ITHREADS)
-PERLVAR(Iregex_pad, SV**) /* All regex objects */
-PERLVAR(Iregex_padav, AV*) /* All regex objects */
-
+PERLVAR(Iregex_pad, SV**) /* Shortcut into the array of
+ regex_padav */
+PERLVAR(Iregex_padav, AV*) /* All regex objects, indexed via the
+ values in op_pmoffset of pmop.
+ Entry 0 is an array of IVs listing
+ the now-free slots in the array */
#endif
#ifdef USE_REENTRANT_API
End of Patch.