diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-29 20:05:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-29 20:05:24 +0000 |
commit | ab13f0c73a71a1ea41c4bdcd1f78f8b903cc458c (patch) | |
tree | 9671965b883a22f439da320a0724a8f40d5a5ff9 /pod | |
parent | 2d6b165414a36b2f7babc9ffdf83d659589dd9eb (diff) | |
download | perl-ab13f0c73a71a1ea41c4bdcd1f78f8b903cc458c.tar.gz |
More leniency to the \p and \P: now can have whitespace
between the property definition and the curlies; now can
invert the property by having a caret between the open
curly and the property.
p4raw-id: //depot/perl@12269
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 06434a2a58..9447b4216e 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1294,6 +1294,10 @@ Your code will be interpreted as an attempt to call a method named "elseif" for the class returned by the following block. This is unlikely to be what you want. +=item Empty %s + +(F) Empty C<\p{}> or C<\P{}>. + =item entering effective %s failed (F) While under the C<use filetest> pragma, switching the real and @@ -1940,6 +1944,10 @@ can vary from one line to the next. (S) This is an educated guess made in conjunction with the message "%s found where operator expected". Often the missing operator is a comma. +=item Missing right brace on %s + +(F) Missing right brace in C<\p{...}> or C<\P{...}>. + =item Missing right curly or square bracket (F) The lexer counted more opening curly or square brackets than closing |