This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4e361c
)
perldiag: missing hyphen
author
Father Chrysostomos
<sprout@cpan.org>
Mon, 14 Feb 2011 06:03:31 +0000
(22:03 -0800)
committer
Father Chrysostomos
<sprout@cpan.org>
Mon, 14 Feb 2011 06:03:31 +0000
(22:03 -0800)
pod/perldiag.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perldiag.pod
b/pod/perldiag.pod
index
cf1abed
..
573e03d
100644
(file)
--- a/
pod/perldiag.pod
+++ b/
pod/perldiag.pod
@@
-2768,7
+2768,7
@@
what you want.
(F) When compiling a regex pattern, an unresolved named character or
sequence was encountered. This can happen in any of several ways that
bypass the lexer, such as using single-quotish context, or an extra
-backslash in double
quotish:
+backslash in double
-
quotish:
$re = '\N{SPACE}'; # Wrong!
$re = "\\N{SPACE}"; # Wrong!