summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.h b/regcomp.h
index 9d07ff9d1c..d6180662d3 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -76,7 +76,7 @@
#define OPEN 25 /* num Mark this point in input as start of #n. */
#define CLOSE 26 /* num Analogous to OPEN. */
#define MINMOD 27 /* no Next operator is not greedy. */
-#define GBOL 28 /* no Matches where last m//g left off. */
+#define GPOS 28 /* no Matches where last m//g left off. */
#define IFMATCH 29 /* no Succeeds if the following matches. */
#define UNLESSM 30 /* no Fails if the following matches. */
#define SUCCEED 31 /* no Return from a subroutine, basically. */
@@ -158,7 +158,7 @@ EXT char regkind[] = {
OPEN,
CLOSE,
MINMOD,
- BOL,
+ GPOS,
BRANCH,
BRANCH,
END,