diff options
author | ericm <ericm> | 2000-09-17 22:40:40 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-09-17 22:40:40 (GMT) |
commit | bf2b535e3645d67bbadc76481d3aa3c67c395cb0 (patch) | |
tree | 60cb56b04f1ab54b6e1a59c6e478a2e17766d532 /generic/tclCmdIL.c | |
parent | 9e68d5fcbb5c7e9d1e17dcaacab6688f786bcd10 (diff) | |
download | tcl-bf2b535e3645d67bbadc76481d3aa3c67c395cb0.zip tcl-bf2b535e3645d67bbadc76481d3aa3c67c395cb0.tar.gz tcl-bf2b535e3645d67bbadc76481d3aa3c67c395cb0.tar.bz2 |
* tests/cmdIL.test: Added a test for fix for [Bug: 6212].
* generic/tclCmdIL.c (Tcl_LsortObjCmd): Applied patch from [Bug:
6212], which corrected an error in the handling of the -index option.
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r-- | generic/tclCmdIL.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 5135476..4cfb5af 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.27 2000/05/27 23:58:01 hobbs Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.28 2000/09/17 22:40:41 ericm Exp $ */ #include "tclInt.h" @@ -2759,7 +2759,6 @@ Tcl_LsortObjCmd(clientData, interp, objc, objv) != TCL_OK) { return TCL_ERROR; } - cmdPtr = objv[i+1]; i++; break; case 6: /* -integer */ |