diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-28 22:53:28 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-28 22:53:28 +0000 |
commit | 56ca2fc0091196610c2d918908f5e362829dd24d (patch) | |
tree | 29617b41a5e28e5ac8fbfadf19cbc6258bcd0164 /pod/perldiag.pod | |
parent | 78fb8492168ccf8508bc41f7c5f0c9c5b662f286 (diff) | |
download | perl-56ca2fc0091196610c2d918908f5e362829dd24d.tar.gz |
Explain the \p{} and \P{} error message better and
have prettier prettyprint in In.pl.
p4raw-id: //depot/perl@9899
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 8d4082286f..a2614c121e 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -628,6 +628,13 @@ found in the PATH did not have correct permissions. (F) A string of a form C<CORE::word> was given to prototype(), but there is no builtin with the name C<word>. +=item Can't find %s character property "%s" + +(F) You used C<\p{}> or C<\P{}> but the character property by that name +could not be find. Maybe you mispelled the name of the property +(remember that the names of character properties consist only of +alphanumeric characters), or maybe you forgot the C<Is> or C<In> prefix? + =item Can't find label %s (F) You said to goto a label that isn't mentioned anywhere that it's |