diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-10 23:55:40 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-10 23:55:40 +0000 |
commit | e68531976a39b1bb777ce9a7b75bd5a3eaf8de8b (patch) | |
tree | 80ca00ad823fd2254b348726db8f27ea15332081 /intrpvar.h | |
parent | 5c9f9c9cf9d963a25623abdc755b7d47402b5e74 (diff) | |
download | perl-e68531976a39b1bb777ce9a7b75bd5a3eaf8de8b.tar.gz |
Better descriptions for PL_regex_pad and PL_regex_padav.
p4raw-id: //depot/perl@32944
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h index 10d8c12c9c..153b2b83b1 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -561,9 +561,12 @@ PERLVAR(Inumeric_radix_sv, SV *) /* The radix separator if not '.' */ #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 |