summaryrefslogtreecommitdiff
path: root/regcomp.sym
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-11-22 15:33:14 -0700
committerKarl Williamson <khw@cpan.org>2019-11-22 15:54:44 -0700
commit0991ffc948e8a71cb1ec7368ece86202dff1f31d (patch)
tree21f7e03bbfe13a34228f91e905e7f72ddb171105 /regcomp.sym
parent273f826f626e945d166340fe2f63e4b4e218501c (diff)
downloadperl-0991ffc948e8a71cb1ec7368ece86202dff1f31d.tar.gz
regcomp.sym: Simplify a couple regnode defns
Under the given circumstances, these work precisely like others that already have good descriptions.
Diffstat (limited to 'regcomp.sym')
-rw-r--r--regcomp.sym4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.sym b/regcomp.sym
index a8ff034083..612c3b7483 100644
--- a/regcomp.sym
+++ b/regcomp.sym
@@ -60,12 +60,12 @@ GPOS GPOS, no ; Matches where last m//g left off.
# in regcomp.c uses the enum value of the modifier as an offset from the /d
# version. The complements must come after the non-complements.
# BOUND, POSIX and their complements are affected, as well as EXACTF.
-BOUND BOUND, no ; Like BOUNDA for non-utf8, otherwise match "" between any Unicode \w\W or \W\w
+BOUND BOUND, no ; Like BOUNDA for non-utf8, otherwise like BOUNDU
BOUNDL BOUND, no ; Like BOUND/BOUNDU, but \w and \W are defined by current locale
BOUNDU BOUND, no ; Match "" at any boundary of a given type using /u rules.
BOUNDA BOUND, no ; Match "" at any boundary between \w\W or \W\w, where \w is [_a-zA-Z0-9]
# All NBOUND nodes are required by code in regexec.c to be greater than all BOUND ones
-NBOUND NBOUND, no ; Like NBOUNDA for non-utf8, otherwise match "" between any Unicode \w\w or \W\W
+NBOUND NBOUND, no ; Like NBOUNDA for non-utf8, otherwise like BOUNDU
NBOUNDL NBOUND, no ; Like NBOUND/NBOUNDU, but \w and \W are defined by current locale
NBOUNDU NBOUND, no ; Match "" at any non-boundary of a given type using using /u rules.
NBOUNDA NBOUND, no ; Match "" betweeen any \w\w or \W\W, where \w is [_a-zA-Z0-9]