Parse::RecDescent::FAQ updated to 5.02
[email protected] ("metaperl.com") Sat, 30 Jun 2007 07:25:45 -0000
| Newsgroups | perl.recdescent |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
I will have to start updating the ChangeLog from now on:
* Version 5.02 is up -
http://search.cpan.org/~tbone/Parse-RecDescent-FAQ-5.02/FAQ.pm
* Only change is the regular expression for skipping over things:
http://search.cpan.org/~tbone/Parse-RecDescent-FAQ-5.02/FAQ.pm#Skipping_over_things
was improved by Chas Owens... "x" as a regexp modifier apparently was
not enough. "xs" was needed:
program: <skip: qr{\s* (/[*] .*? [*]/ \s*)*}x> statement(s)
program: <skip: qr{\s* (/[*] .*? [*]/ \s*)*}xs> statement(s)