summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorericm <ericm>2000-09-20 01:50:37 (GMT)
committerericm <ericm>2000-09-20 01:50:37 (GMT)
commitac36b4dd74f9359f07bfdb431c932d702064652f (patch)
tree898c1d7c089fbde4ddba5e1439c89644c8372642 /ChangeLog
parent05b7a3b55f38610b766db4b48323334452f42fbe (diff)
downloadtcl-ac36b4dd74f9359f07bfdb431c932d702064652f.zip
tcl-ac36b4dd74f9359f07bfdb431c932d702064652f.tar.gz
tcl-ac36b4dd74f9359f07bfdb431c932d702064652f.tar.bz2
* generic/tclCmdMZ.c (Tcl_RegexpObjCmd): When using -all, all
attempts after the first to match the regexp against the string should include the TCL_REG_NOTBOL flag, to avoid erroneously matching ^ in the middle of the string. Added code to set this flag after the first pass through the matching loop. [Bug: 6284].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4800ea8..06b7bcf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2000-09-19 Eric Melski <ericm@ajubasolutions.com>
+
+ * generic/tclCmdMZ.c (Tcl_RegexpObjCmd): When using -all, all
+ attempts after the first to match the regexp against the string
+ should include the TCL_REG_NOTBOL flag, to avoid erroneously
+ matching ^ in the middle of the string. Added code to set this
+ flag after the first pass through the matching loop. [Bug: 6284].
+
2000-09-19 David Gravereaux <davygrvy@ajubasolutions.com>
* doc/Eval.3: Added a note about the script argument to Tcl_Eval()