diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-03-03 08:45:39 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-03-03 09:08:51 -0700 |
commit | 80acc8be4f101a4e45b660efa91659da2c6b0a50 (patch) | |
tree | fc6834543480b8aeb1fe830599878fa14b630b95 /regnodes.h | |
parent | fab2782b37b5570d7f8f8065fd7d18621117ed49 (diff) | |
download | perl-80acc8be4f101a4e45b660efa91659da2c6b0a50.tar.gz |
regcomp.sym: Fix out-dated description
As a result of commit fab2782b37b5570d7f8f8065fd7d18621117ed49
the description is no longer valid. This node type is trieable.
Diffstat (limited to 'regnodes.h')
-rw-r--r-- | regnodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regnodes.h b/regnodes.h index 5561243882..14bac24cb2 100644 --- a/regnodes.h +++ b/regnodes.h @@ -62,7 +62,7 @@ #define EXACTFL 50 /* 0x32 Match this string (not guaranteed to be folded) using /il rules (w/len). */ #define EXACTFU 51 /* 0x33 Match this string (folded iff in UTF-8, length in folding doesn't change if not in UTF-8) using /iu rules (w/len). */ #define EXACTFU_SS 52 /* 0x34 Match this string (folded iff in UTF-8, length in folding may change even if not in UTF-8) using /iu rules (w/len). */ -#define EXACTFU_TRICKYFOLD 53 /* 0x35 Match this folded UTF-8 string using /iu rules, but don't generate a trie for it */ +#define EXACTFU_TRICKYFOLD 53 /* 0x35 Match this folded UTF-8 string using /iu rules */ #define EXACTFA 54 /* 0x36 Match this string (not guaranteed to be folded) using /iaa rules (w/len). */ #define NOTHING 55 /* 0x37 Match empty string. */ #define TAIL 56 /* 0x38 Match empty string. Can jump here from outside. */ |