summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-06-27 13:28:13 -0600
committerKarl Williamson <public@khwilliamson.com>2012-06-29 22:22:41 -0600
commit8c1182fda8158a86281b1ea6464176d1c68f2f18 (patch)
tree5867a3693d0c7b2a587db47d3e078687c6e87aeb /regcomp.sym
parent31ae3604e91b534f99f9dd92647e555601952cf2 (diff)
downloadperl-8c1182fda8158a86281b1ea6464176d1c68f2f18.tar.gz
regcomp.sym: Reorder a couple of nodes
This causes all the nodes that depend on the regex modifier, BOUND, BOUNDL, etc. to have the same relative ordering. This will enable a future commit to simplify generation of the correct node.
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.sym b/regcomp.sym
index a1eec5beda..13d3787965 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -98,9 +98,9 @@ EXACT EXACT, str ; Match this string (preceded by length).
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).
+EXACTFA EXACT, str ; Match this string (not guaranteed to be folded) using /iaa 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
-EXACTFA EXACT, str ; Match this string (not guaranteed to be folded) using /iaa rules (w/len).
#*Do nothing types