diff options
author | Karl Williamson <khw@cpan.org> | 2015-08-21 09:54:05 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-08-24 12:11:33 -0600 |
commit | b24abbc803191b400f0d0ab41db2f184860e7534 (patch) | |
tree | f922a1083b409344dbac1e2369901db86a8594bd /regcomp.sym | |
parent | e0be3f061825dcf8ffbb0e0581a77e09e74ab8fc (diff) | |
download | perl-b24abbc803191b400f0d0ab41db2f184860e7534.tar.gz |
perldebguts: Add clarification
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.sym b/regcomp.sym index ffcb53b21c..f385dc68a2 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -90,7 +90,7 @@ BRANCH BRANCH, node 0 V ; Match this alternative, or the next... # NOTE: the relative ordering of these types is important do not change it EXACT EXACT, str ; Match this string (preceded by length). -EXACTL EXACT, str ; Like EXACT, but /l is in effect. +EXACTL EXACT, str ; Like EXACT, but /l is in effect (used so locale-related warnings can be checked for). EXACTF EXACT, str ; Match this non-UTF-8 string (not guaranteed to be folded) using /id rules (w/len). EXACTFL EXACT, str ; Match this string (not guaranteed to be folded) using /il rules (w/len). EXACTFU EXACT, str ; Match this string (folded iff in UTF-8, length in folding doesn't change if not in UTF-8) using /iu rules (w/len). |