diff options
author | Yves Orton <demerphq@gmail.com> | 2007-01-10 21:33:39 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-01-11 14:47:01 +0000 |
commit | ee9b8eaedac8053a01cc9281ada34dd182a8f7d0 (patch) | |
tree | 129df8e187e17fb664051b0f7f9a1b55d46fcecd /regexp.h | |
parent | b4390064818aaae08b8f53f740ea62f7dd8517a1 (diff) | |
download | perl-ee9b8eaedac8053a01cc9281ada34dd182a8f7d0.tar.gz |
Add Regexp::Keep \K functionality to regex engine as well as add \v and \V, cleanup and more docs for regatom()
Message-ID: <9b18b3110701101133i46dc5fd0p1476a0f1dd1e9c5a@mail.gmail.com>
(plus POD nits by Merijn and myself)
p4raw-id: //depot/perl@29756
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -371,6 +371,10 @@ typedef struct regmatch_state { SV* mark_name; char *mark_loc; } mark; + + struct { + int val; + } keeper; } u; } regmatch_state; |