diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-20 01:46:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-20 01:46:03 +0000 |
commit | 491fd90a109f6263a896300e5709e6fd255f075f (patch) | |
tree | 596ceeddf227da61927d12e4c2ce4c324fc43bbd /pod/perlre.pod | |
parent | ee081dd1f02934d943364e5d6bd4130bf9c3e0ad (diff) | |
download | perl-491fd90a109f6263a896300e5709e6fd255f075f.tar.gz |
User-defined character properties were unintentionally
removed, noticed by Dan Kogai.
p4raw-id: //depot/perl@16012
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index f2ce3ffff1..c0d4e8955b 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -198,8 +198,8 @@ C<\d>, and C<\D> within character classes, but if you try to use them as endpoints of a range, that's not a range, the "-" is understood literally. If Unicode is in effect, C<\s> matches also "\x{85}", "\x{2028}, and "\x{2029}", see L<perlunicode> for more details about -C<\pP>, C<\PP>, and C<\X>, and L<perluniintro> about Unicode in -general. +C<\pP>, C<\PP>, and C<\X>, and L<perluniintro> about Unicode in general. +You can define your own C<\p> and C<\P> propreties, see L<perlunicode>. The POSIX character class syntax |