projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a598d0e
)
perlrebackslash: too grammer tweaks
author
Father Chrysostomos
<sprout@cpan.org>
Thu, 27 Oct 2011 20:36:45 +0000
(13:36 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Thu, 27 Oct 2011 20:36:45 +0000
(13:36 -0700)
pod/perlrebackslash.pod
patch
|
blob
|
history
diff --git
a/pod/perlrebackslash.pod
b/pod/perlrebackslash.pod
index
1a64849
..
df646d5
100644
(file)
--- a/
pod/perlrebackslash.pod
+++ b/
pod/perlrebackslash.pod
@@
-604,8
+604,8
@@
C<\v> (vertical whitespace), and the multi character sequence C<"\x0D\x0A">
(carriage return followed by a line feed, sometimes called the network
newline; it's the end of line sequence used in Microsoft text files opened
in binary mode). C<\R> is equivalent to C<< (?>\x0D\x0A|\v) >>. (The
-reason it doesn't backtrack is
because
the sequence is considered
-insep
e
rable. That means that
+reason it doesn't backtrack is
that
the sequence is considered
+insep
a
rable. That means that
"\x0D\x0A" =~ /^\R\x0A$/ # No match