diff options
author | Ævar Arnfjörð Bjarmason <avar@cpan.org> | 2007-05-16 16:38:44 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-05-20 12:58:53 +0000 |
commit | 882227b7f0b6e1ca62725268e60a7fd0211899ca (patch) | |
tree | 43082fa89260b4015ed9d2dad74ea00f104efec0 /regexp.h | |
parent | c374533179151a34611a7f645c24e3b955cc0461 (diff) | |
download | perl-882227b7f0b6e1ca62725268e60a7fd0211899ca.tar.gz |
Minor perlreapi.pod cleanup
From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Message-ID: <51dd1af80705160938w13789b63m6d5f4710441ceac@mail.gmail.com>
p4raw-id: //depot/perl@31244
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -55,8 +55,17 @@ typedef struct regexp_paren_pair { I32 end; } regexp_paren_pair; -/* this is ordered such that the most commonly used - fields are at the start of the struct */ +/* + The regexp/REGEXP struct, see L<perlreapi> for further documentation + on the individual fields. The struct is ordered so that the most + commonly used fields are placed at the start. + + Any patch that adds items to this struct will need to include + changes to F<sv.c> (C<Perl_re_dup()>) and F<regcomp.c> + (C<pregfree()>). This involves freeing or cloning items in the + regexp's data array based on the data item's type. +*/ + typedef struct regexp { /* what engine created this regexp? */ const struct regexp_engine* engine; |