From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
Date: Wed, 17 Jun 2009 16:54:41 +0000 (+0200)
Subject: Add perldelta entry for \N
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=71e9c5323d288a57ab4e6570f3aee42167c6d5e7;p=p5sagit%2Fp5-mst-13.2.git

Add perldelta entry for \N
---

diff --git a/pod/perl5110delta.pod b/pod/perl5110delta.pod
index afd1b35..720b5d2 100644
--- a/pod/perl5110delta.pod
+++ b/pod/perl5110delta.pod
@@ -109,6 +109,14 @@ to avoid relying on the object's underlying structure).
 This pragma allows you to lexically disable or enable overloading
 for some or all operations. (Yuval Kogman)
 
+=head2 C<\N> regex escape
+
+A new regex escape has been added, C<\N>. It will match any character that
+is not a newline, independently from the presence or absence of the single
+line match modifier C</s>. (If C<\N> is followed by an opening brace and
+by a letter, perl will still assume that a Unicode character name is
+coming, so compatibility is preserved.) (Rafael Garcia-Suarez)
+
 =head1 Modules and Pragmata
 
 =head2 Pragmata Changes