diff options
author | Moritz Lenz <moritz@casella.verplant.org> | 2008-01-05 18:14:44 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-01-06 15:51:07 +0000 |
commit | e1f17637d1ade6d468d3aebe31c7b7a17f6fc053 (patch) | |
tree | 966d8d51a386990f3ff0b301a98006d44c4e1ab0 /pod/perlre.pod | |
parent | 00bfa1c17dfe43993c5f80f5019f11c8cfeb534a (diff) | |
download | perl-e1f17637d1ade6d468d3aebe31c7b7a17f6fc053.tar.gz |
\X is equivalent to an atomic group
Message-ID: <477FACF4.5030801@casella.verplant.org>
p4raw-id: //depot/perl@32872
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 015881be53..c35b49fe72 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -258,7 +258,7 @@ X<word> X<whitespace> X<character class> X<backreference> \pP Match P, named property. Use \p{Prop} for longer names. \PP Match non-P \X Match eXtended Unicode "combining character sequence", - equivalent to (?:\PM\pM*) + equivalent to (?>\PM\pM*) \C Match a single C char (octet) even under Unicode. NOTE: breaks up characters into their UTF-8 bytes, so you may end up with malformed pieces of UTF-8. |