Skip to content

Commit

Permalink
Changes for 0.07
Browse files Browse the repository at this point in the history
  • Loading branch information
dgl committed Apr 11, 2011
1 parent 44d2e8b commit 5288a69
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.07 2011-04-11
- RT #67192: Fix /s support
- Attempt to compile with -O3 as RE2 does
- Fix leak in possible_match_range
- Fix compilation on gcc 4.6 (RE2 issue 35)

0.06 2011-04-02
- RT #67153: Fix interpolation of RE2 into RE2
(qr// stringification included the x flag which RE2 doesn't support)
Expand Down
3 changes: 0 additions & 3 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# -*- mode: org -*-

* Make /s modifier work (RT #67192)
As I mention in the ticket if this is done by passing the stringified form
into RE2 we stop needing the forked version of RE2 due to the /m issue too.
* Fix UTF-8 support
This turns out to be harder than I was thinking. The first step is to compile
two versions of the regexp, one for matching UTF-8 and one for matching
Expand Down
2 changes: 1 addition & 1 deletion re2_xs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ RE2_comp(pTHX_
options.set_log_errors(false);

if (re2_max_mem)
options.set_max_mem(re2_max_mem);
options.set_max_mem(re2_max_mem);

// Try and compile first, if this fails we will fallback to Perl regex via
// Perl_re_compile.
Expand Down

0 comments on commit 5288a69

Please sign in to comment.