Skip Menu |

This queue is for tickets about the Regexp-Assemble CPAN distribution.

Report information
The Basics
Id: 15522
Status: resolved
Worked: 1 hour (60 min)
Priority: 0/
Queue: Regexp-Assemble

People
Owner: dland [...] cpan.org
Requestors: david [...] landgren.net
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.19
Fixed in: 0.20



Subject: $ and ^ not treated correctly
The following assemblies are incorrect (beginning of line followed by a, or ma anywhere in the line) % assemble ^a ma [m^]a => should be (?:^|m)a similarly for $ % assemble b$ be b[$e] => should be b(?:$|e) A new version that corrects this will be issued ASAP. A workaround would be to add a nop: % assemble ^a m(?:)a (?:m(?:)|^)a (which could then be s/\(\?:\)//g afterwards)