summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-09-29 20:55:45 -0600
committerKarl Williamson <khw@cpan.org>2019-10-29 21:21:36 -0600
commit3f2416aea024cc4d3e0b0ffbe0e292a0d9970b8d (patch)
tree611b53239de609145f859835a9b7d7982184e0b3 /regcomp.sym
parenta72bc1405f9373d9b989f71addda0a3373b0e05f (diff)
downloadperl-3f2416aea024cc4d3e0b0ffbe0e292a0d9970b8d.tar.gz
Change the names of some regnodes
The new name is shorter and I believe, clearer.
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym6
1 files changed, 3 insertions, 3 deletions
diff --git a/regcomp.sym b/regcomp.sym
index fd594dfdcd..306cbf0e58 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -140,9 +140,9 @@ EXACTFLU8 EXACT, str ; Like EXACTFU, but use /il, UTF-8, (string is fol
EXACTFAA_NO_TRIE EXACT, str ; Like EXACT, but match using /iaa rules (string not UTF-8, not guaranteed to be folded, not currently trie-able).
-EXACT_ONLY8 EXACT, str ; Like EXACT, but only UTF-8 encoded targets can match
-LEXACT_ONLY8 EXACT, len:str 1 ; Like LEXACT, but only UTF-8 encoded targets can match
-EXACTFU_ONLY8 EXACT, str ; Like EXACTFU, but only UTF-8 encoded targets can match
+EXACT_REQ8 EXACT, str ; Like EXACT, but only UTF-8 encoded targets can match
+LEXACT_REQ8 EXACT, len:str 1 ; Like LEXACT, but only UTF-8 encoded targets can match
+EXACTFU_REQ8 EXACT, str ; Like EXACTFU, but only UTF-8 encoded targets can match
# One could add EXACTFAA8 and something that has the same effect for /l,
# but these would be extremely uncommon