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/perlunicode.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/perlunicode.pod')
-rw-r--r-- | pod/perlunicode.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 61d62d219f..bae97df58e 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -184,7 +184,7 @@ The special pattern C<\X> matches any extended Unicode sequence--"a combining character sequence" in Standardese--where the first character is a base character and subsequent characters are mark characters that apply to the base character. C<\X> is equivalent to -C<(?:\PM\pM*)>. +C<< (?>\PM\pM*) >>. =item * |