summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstanton <stanton>1998-11-18 22:34:13 (GMT)
committerstanton <stanton>1998-11-18 22:34:13 (GMT)
commit2caa969570f9e24e9b42dba4bffb27788c85cab0 (patch)
treed13c0210e8b5e448dc5912b59a5077070f0a090c
parent9fc62ede7e6a223e1229d038c3b4a229f9853f6e (diff)
downloadtcl-2caa969570f9e24e9b42dba4bffb27788c85cab0.zip
tcl-2caa969570f9e24e9b42dba4bffb27788c85cab0.tar.gz
tcl-2caa969570f9e24e9b42dba4bffb27788c85cab0.tar.bz2
lint
-rw-r--r--generic/tclCmdMZ.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c
index 7fa09d6..b158c09 100644
--- a/generic/tclCmdMZ.c
+++ b/generic/tclCmdMZ.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdMZ.c,v 1.1.2.7 1998/11/16 20:45:22 stanton Exp $
+ * RCS: @(#) $Id: tclCmdMZ.c,v 1.1.2.8 1998/11/18 22:34:13 stanton Exp $
*/
#include "tclInt.h"
@@ -140,7 +140,7 @@ Tcl_RegexpObjCmd(dummy, interp, objc, objv)
};
enum options {
REGEXP_INDICES, REGEXP_NOCASE, REGEXP_ABOUT, REGEXP_EXPANDED,
- REGEXP_MULTI, REGEXP_NOCROSS, REGEXP_NEWL,
+ REGEXP_LINE, REGEXP_LINESTOP, REGEXP_LINEANCHOR,
REGEXP_LAST
};
@@ -178,15 +178,15 @@ Tcl_RegexpObjCmd(dummy, interp, objc, objv)
cflags |= REG_EXPANDED;
break;
}
- case REGEXP_MULTI: {
+ case REGEXP_LINE: {
cflags |= REG_NEWLINE;
break;
}
- case REGEXP_NOCROSS: {
+ case REGEXP_LINESTOP: {
cflags |= REG_NLSTOP;
break;
}
- case REGEXP_NEWL: {
+ case REGEXP_LINEANCHOR: {
cflags |= REG_NLANCH;
break;
}