From b81c91435ed95d8d84d43371422272a3f22ebd7d Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 28 Jul 2011 19:09:43 -0600 Subject: [PATCH] perlrequick: Expand on \d, etc. This clarifies that the definitions presented here are valid only when /a is specified. --- pod/perlrequick.pod | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pod/perlrequick.pod b/pod/perlrequick.pod index d543389..bd44d01 100644 --- a/pod/perlrequick.pod +++ b/pod/perlrequick.pod @@ -162,8 +162,9 @@ character, or the match fails. Then /[a^]at/; # matches 'aat' or '^at'; here '^' is ordinary Perl has several abbreviations for common character classes. (These -definitions are those that Perl uses in ASCII mode with the C modifier. -See L for details.) +definitions are those that Perl uses in ASCII-safe mode with the C modifier. +Otherwise they could match many more non-ASCII Unicode characters as +well. See L for details.) =over 4 -- 1.8.3.1