summaryrefslogtreecommitdiff
path: root/pod/perldebguts.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-03-14 12:18:59 -0600
committerKarl Williamson <khw@cpan.org>2019-05-24 17:09:29 -0600
commit016b720906a9b088c796d5295109cd8e9a3aecf9 (patch)
tree0249bb01c38742c8cfa0275f743a1d240284ad40 /pod/perldebguts.pod
parent9629b6dc1d6296e0d3a6a5dbfd0f672b4b2021ca (diff)
downloadperl-016b720906a9b088c796d5295109cd8e9a3aecf9.tar.gz
regnodes.h: Change some regnodes' names
These were misleading, as elsewhere a leading 'N' in the name means the complement. Instead move the N to the end of the name
Diffstat (limited to 'pod/perldebguts.pod')
-rw-r--r--pod/perldebguts.pod12
1 files changed, 6 insertions, 6 deletions
diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod
index de413fd813..797e2c69e0 100644
--- a/pod/perldebguts.pod
+++ b/pod/perldebguts.pod
@@ -732,14 +732,14 @@ will be lost.
# Named references. Code in regcomp.c assumes that these all are after
# the numbered references
- NREF no-sv 1 Match some already matched string
- NREFF no-sv 1 Match already matched string, using /di
+ REFN no-sv 1 Match some already matched string
+ REFFN no-sv 1 Match already matched string, using /di
rules.
- NREFFL no-sv 1 Match already matched string, using /li
+ REFFLN no-sv 1 Match already matched string, using /li
rules.
- NREFFU num 1 Match already matched string, using /ui
+ REFFUN num 1 Match already matched string, using /ui
rules.
- NREFFA num 1 Match already matched string, using /aai
+ REFFAN num 1 Match already matched string, using /aai
rules.
# Support for long RE
@@ -791,7 +791,7 @@ will be lost.
GOSUB num/ofs 2L recurse to paren arg1 at (signed) ofs arg2
# Special conditionals
- NGROUPP no-sv 1 Whether the group matched.
+ GROUPPN no-sv 1 Whether the group matched.
INSUBP num 1 Whether we are in a specific recurse.
DEFINEP none 1 Never execute directly.