summaryrefslogtreecommitdiffstats
path: root/generic/regex.h
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-06-17 19:30:24 (GMT)
committerstanton <stanton@noemail.net>1999-06-17 19:30:24 (GMT)
commit7952509ed0ee39aa465ec918e69903ec1a18b08e (patch)
tree12cb78e0f616e3bb360eafc126717bad52f22606 /generic/regex.h
parentd3cb5b9ddf6ef9582150d97020063f03bdc8d4b0 (diff)
downloadtcl-7952509ed0ee39aa465ec918e69903ec1a18b08e.zip
tcl-7952509ed0ee39aa465ec918e69903ec1a18b08e.tar.gz
tcl-7952509ed0ee39aa465ec918e69903ec1a18b08e.tar.bz2
* generic/regcomp.c: lint
* tests/reg.test: * generic/regex.h: * generic/regc_lex.c: Added REG_BOSONLY flag to allow Expect to iterate through a string an only find matches that start at the current position within the string. FossilOrigin-Name: 12e2267e228caa36ded5dd8f95f90884cc182563
Diffstat (limited to 'generic/regex.h')
-rw-r--r--generic/regex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/regex.h b/generic/regex.h
index 26be33c..0016005 100644
--- a/generic/regex.h
+++ b/generic/regex.h
@@ -223,6 +223,7 @@ typedef struct {
#define REG_NEWLINE 000300 /* newlines are line terminators */
#define REG_PEND 000400 /* ugh -- backward-compatibility hack */
#define REG_EXPECT 001000 /* report details on partial/limited matches */
+#define REG_BOSONLY 002000 /* temporary kludge for BOS-only matches */
#define REG_DUMP 004000 /* none of your business :-) */
#define REG_FAKEEC 010000 /* none of your business :-) */
#define REG_PROGRESS 020000 /* none of your business :-) */