diff options
author | dgp <dgp@users.sourceforge.net> | 2016-10-14 19:29:52 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-10-14 19:29:52 (GMT) |
commit | ae54e070a1abfeb5344f99623b55fc7515a56de8 (patch) | |
tree | 44cdc12fe613bcdf9dbbc209f24c781e07426325 /generic/tclExecute.c | |
parent | e35292f3148b49b096a52e07789775a9e6e8baba (diff) | |
parent | 8b894ab295af35f4793ab68580a0f2cb6477a638 (diff) | |
download | tcl-ae54e070a1abfeb5344f99623b55fc7515a56de8.zip tcl-ae54e070a1abfeb5344f99623b55fc7515a56de8.tar.gz tcl-ae54e070a1abfeb5344f99623b55fc7515a56de8.tar.bz2 |
[eb6b68c1a9] Simple fix for [string replace] error demonstrated by new test.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 85e059b..aee565c 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -5711,17 +5711,6 @@ TEBCresume( length3 = Tcl_GetCharLength(value3Ptr); /* - * Remove substring. In-place. - */ - - if (length3 == 0 && !Tcl_IsShared(valuePtr) && toIdx == length) { - TclDecrRefCount(value3Ptr); - Tcl_SetObjLength(valuePtr, fromIdx); - TRACE_APPEND(("\"%.30s\"\n", O2S(valuePtr))); - NEXT_INST_F(1, 0, 0); - } - - /* * See if we can splice in place. This happens when the number of * characters being replaced is the same as the number of characters * in the string to be inserted. |