summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorhobbs <hobbs>2007-12-07 21:24:40 (GMT)
committerhobbs <hobbs>2007-12-07 21:24:40 (GMT)
commit2904158a955ce9de68ba2adf6f4d208ac0d4d1fb (patch)
treeff0702e66499acf947274d981f176c4d49fabc04 /generic
parentaeb2a84dc4e3d3c70aa56a9e7e9f23d5f6f7f4b8 (diff)
downloadtcl-2904158a955ce9de68ba2adf6f4d208ac0d4d1fb.zip
tcl-2904158a955ce9de68ba2adf6f4d208ac0d4d1fb.tar.gz
tcl-2904158a955ce9de68ba2adf6f4d208ac0d4d1fb.tar.bz2
* generic/tclExecute.c (TclExecuteByteCode INST_REGEXP):
* generic/tclCompCmds.c (TclCompileRegexpCmd): Pass correct RE compile flags at compile time, and use TCL_REG_NOSUB.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclCompCmds.c11
-rw-r--r--generic/tclExecute.c12
2 files changed, 13 insertions, 10 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c
index 5f884f6..20acc28 100644
--- a/generic/tclCompCmds.c
+++ b/generic/tclCompCmds.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: tclCompCmds.c,v 1.135 2007/12/06 16:36:54 dkf Exp $
+ * RCS: @(#) $Id: tclCompCmds.c,v 1.136 2007/12/07 21:24:41 hobbs Exp $
*/
#include "tclInt.h"
@@ -3191,7 +3191,14 @@ TclCompileRegexpCmd(
TclEmitInstInt1(INST_STR_MATCH, nocase, envPtr);
}
} else {
- TclEmitInstInt1(INST_REGEXP, nocase, envPtr);
+ /*
+ * Pass correct RE compile flags. We use only Int1 (8-bit), but
+ * that handles all the flags we want to pass.
+ * Use TCL_REG_NOSUB as we don't have capture vars.
+ */
+ int cflags = TCL_REG_ADVANCED | TCL_REG_NOSUB
+ | (nocase ? TCL_REG_NOCASE : 0);
+ TclEmitInstInt1(INST_REGEXP, cflags, envPtr);
}
return TCL_OK;
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index e537b4b..c8ec537 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.354 2007/12/07 21:08:43 hobbs Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.355 2007/12/07 21:24:41 hobbs Exp $
*/
#include "tclInt.h"
@@ -4231,19 +4231,15 @@ TclExecuteByteCode(
}
case INST_REGEXP: {
- int nocase, match;
+ int cflags, match;
Tcl_Obj *valuePtr, *value2Ptr;
Tcl_RegExp regExpr;
- nocase = TclGetInt1AtPtr(pc+1);
+ cflags = TclGetInt1AtPtr(pc+1); /* RE compile flages like NOCASE */
valuePtr = OBJ_AT_TOS; /* String */
value2Ptr = OBJ_UNDER_TOS; /* Pattern */
- /*
- * Use TCL_REG_NOSUB as we come here without capture vars
- */
- regExpr = Tcl_GetRegExpFromObj(interp, value2Ptr,
- TCL_REG_ADVANCED|TCL_REG_NOSUB|(nocase ? TCL_REG_NOCASE : 0));
+ regExpr = Tcl_GetRegExpFromObj(interp, value2Ptr, cflags);
if (regExpr == NULL) {
match = -1;
} else {