<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From fd94bb2480be926b6dc2c4a820a8443505a4a89a Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Fri, 10 Jun 2016 23:54:33 +0200
Subject: [PATCH] fix "Unescaped left brace in regex is illegal in regex" (RT
 #114342)

---
 t/undef.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/undef.t b/t/undef.t
index 423cd62..7735101 100644
--- a/t/undef.t
+++ b/t/undef.t
@@ -16,5 +16,5 @@ my $output;
 
 ok !eval{ write_config %data =&gt; \$output }    =&gt; 'Write failed as expected';
 
-like $@, qr/\ACan't save undefined value for key {'FOO'}{'foo2'}/
+like $@, qr/\A\QCan't save undefined value for key {'FOO'}{'foo2'}/
                                             =&gt; 'Failed with expected exception';
-- 
2.1.4

</pre></body></html>