a0d653
From ae5f5addc848a6e80707f625db58cbb9a633aea7 Mon Sep 17 00:00:00 2001
a0d653
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
a0d653
Date: Wed, 6 May 2015 10:10:46 +0200
a0d653
Subject: [PATCH] Upgrade to 0.92
a0d653
MIME-Version: 1.0
a0d653
Content-Type: text/plain; charset=UTF-8
a0d653
Content-Transfer-Encoding: 8bit
a0d653
a0d653
Signed-off-by: Petr Písař <ppisar@redhat.com>
a0d653
---
a0d653
 lib/Filter/Simple.pm | 6 +++---
a0d653
 1 file changed, 3 insertions(+), 3 deletions(-)
a0d653
a0d653
diff --git a/lib/Filter/Simple.pm b/lib/Filter/Simple.pm
a0d653
index 4b15e55..8212919 100644
a0d653
--- a/lib/Filter/Simple.pm
a0d653
+++ b/lib/Filter/Simple.pm
a0d653
@@ -4,7 +4,7 @@ use Text::Balanced ':ALL';
a0d653
 
a0d653
 use vars qw{ $VERSION @EXPORT };
a0d653
 
a0d653
-$VERSION = '0.91';
a0d653
+$VERSION = '0.92';
a0d653
 
a0d653
 use Filter::Util::Call;
a0d653
 use Carp;
a0d653
@@ -119,8 +119,8 @@ sub gen_std_filter_for {
a0d653
         }
a0d653
         if ($type =~ /^code/) {
a0d653
             my $count = 0;
a0d653
-            local $placeholder = qr/\Q$;\E(\C{4})\Q$;\E/;
a0d653
-            my $extractor =      qr/\Q$;\E(\C{4})\Q$;\E/;
a0d653
+            local $placeholder = qr/\Q$;\E(.{4})\Q$;\E/s;
a0d653
+            my $extractor =      qr/\Q$;\E(.{4})\Q$;\E/s;
a0d653
             $_ = join "",
a0d653
                   map { ref $_ ? $;.pack('N',$count++).$; : $_ }
a0d653
                       @components;
a0d653
-- 
a0d653
2.1.0
a0d653