From: Karl Williamson Date: Sun, 14 Mar 2010 20:22:26 +0000 (-0600) Subject: A few small fixes to perl5120delta.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7acb582f8809d5982cf0b937450712b60e1e9f47;p=p5sagit%2Fp5-mst-13.2.git A few small fixes to perl5120delta.pod --- diff --git a/pod/perl5120delta.pod b/pod/perl5120delta.pod index 50fc42c..8c46898 100644 --- a/pod/perl5120delta.pod +++ b/pod/perl5120delta.pod @@ -2061,14 +2061,14 @@ C handler returns malformed UTF-8. =item * If an unresolved named character or sequence was encountered when compiling a -regex pattern then the fatal error C<\\N{NAME} must be resolved by the lexer> +regex pattern then the fatal error C<\N{NAME} must be resolved by the lexer> is now produced. This can happen, for example, when using a single-quotish -context like C<$re = '\N{SPACE}'; $re;>. See L for more examples of +context like C<$re = '\N{SPACE}'; /$re/;>. See L for more examples of how the lexer can get bypassed. =item * -C is a new fatal error triggered when +C is a new fatal error triggered when the character constant represented by C<...> is not a valid hexadecimal number. @@ -2076,14 +2076,14 @@ number. The new meaning of C<\N> as C<[^\n]> is not valid in a bracketed character class, just like C<.> in a character class loses its special meaning, and will -cause the fatal error C<\\N in a character class must be a named character: \\N{...}>. +cause the fatal error C<\N in a character class must be a named character: \N{...}>. =item * The rules on what is legal for the C<...> in C<\N{...}> have been tightened up so that unless the C<...> begins with an alphabetic character and continues with a combination of alphanumerics, dashes, spaces, parentheses or colons -then the warning C is +then the warning C is now issued. =item * @@ -2221,7 +2221,7 @@ first character returned by \N{} in character class> will be issued. =item * -The warning C will be issued if Perl encounters a C<\N{> but doesn't find a matching C<}>. In this case Perl doesn't know if it was mistakenly omitted, or if "match non-newline" followed by "match a C<{>" was desired. @@ -2680,7 +2680,7 @@ or cause the following assertion failure [RT #60508]: =item * -Perl now includes previously missing files from the Unicode 5.1 Character Database. +Perl now includes previously missing files from the Unicode Character Database. =item *