summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-03-03 08:45:39 -0700
committerKarl Williamson <public@khwilliamson.com>2012-03-03 09:08:51 -0700
commit80acc8be4f101a4e45b660efa91659da2c6b0a50 (patch)
treefc6834543480b8aeb1fe830599878fa14b630b95
parentfab2782b37b5570d7f8f8065fd7d18621117ed49 (diff)
downloadperl-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.
-rw-r--r--regcomp.sym2
-rw-r--r--regnodes.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.sym b/regcomp.sym
index e6be6ac292..a1eec5beda 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -99,7 +99,7 @@ EXACTF EXACT, str ; Match this non-UTF-8 string (not guaranteed
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).
EXACTFU_SS EXACT, str ; Match this string (folded iff in UTF-8, length in folding may change even if not in UTF-8) using /iu rules (w/len).
-EXACTFU_TRICKYFOLD EXACT, str ; Match this folded UTF-8 string using /iu rules, but don't generate a trie for it
+EXACTFU_TRICKYFOLD EXACT, str ; Match this folded UTF-8 string using /iu rules
EXACTFA EXACT, str ; Match this string (not guaranteed to be folded) using /iaa rules (w/len).
#*Do nothing types
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. */