summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1998-02-17 18:54:07 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-20 12:47:44 +0000
commit4bfe01581aa86cc6e375a3342177d19e2538bd6c (patch)
tree5bfe7fe4bdc02f9e33c3981a8053a39f846fbcda /regcomp.c
parent6c5989e9d8ff294ed369afe5749cd5b1711c88c5 (diff)
downloadperl-4bfe01581aa86cc6e375a3342177d19e2538bd6c.tar.gz
Misprint in regcomp.c [PATCH]
p4raw-id: //depot/perl@554
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index a42c4db0a4..7411b8a789 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -182,6 +182,7 @@ static scan_data_t zero_scan_data = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
#define SF_HAS_PAR 0x80
#define SF_IN_PAR 0x100
#define SF_HAS_EVAL 0x200
+#define SCF_DO_SUBSTR 0x400
static void
scan_commit(scan_data_t *data)
@@ -215,8 +216,6 @@ scan_commit(scan_data_t *data)
data->flags &= ~SF_BEFORE_EOL;
}
-#define SCF_DO_SUBSTR 1
-
/* Stops at toplevel WHILEM as well as at `last'. At end *scanp is set
to the position after last scanned or to NULL. */