summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdIL.c
diff options
context:
space:
mode:
authorstanton <stanton>1999-03-09 02:37:12 (GMT)
committerstanton <stanton>1999-03-09 02:37:12 (GMT)
commit0b1221cdae98a17ad9a05f483d6439e2822cc0a8 (patch)
treeed0779d966a9787fef5125539adef9a717ec01b0 /generic/tclCmdIL.c
parent7d8024c1dcb1012729a469fc0789e50798ab2f9a (diff)
downloadtcl-0b1221cdae98a17ad9a05f483d6439e2822cc0a8.zip
tcl-0b1221cdae98a17ad9a05f483d6439e2822cc0a8.tar.gz
tcl-0b1221cdae98a17ad9a05f483d6439e2822cc0a8.tar.bz2
* generic/tcl.h: Moved Tcl_Mutex, etc. macros above the inclusion
of tclDecls.h to avoid macro conflicts. * generic/tclInt.h: * generic/regc_color.c: * generic/regcomp.c: * generic/tclCmdIL.c: * generic/tclCmdAH.c: * generic/tclIOCmd.c: * generic/tclParse.c: * generic/tclStringObj.c: * unix/tclUnixNotfy.c: Cleaned up various compiler warnings, eliminated UCHAR bugs. * unix/tclUnixNotfy.c: * unix/tclUnixThrd.c: * generic/tclThreadTest.c: * mac/tclMacThrd.c: Changed TclpCondition*() to Tcl_Condition*().
Diffstat (limited to 'generic/tclCmdIL.c')
-rw-r--r--generic/tclCmdIL.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c
index 56d48cb..c69020f 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.1.2.7 1999/02/10 23:31:14 stanton Exp $
+ * RCS: @(#) $Id: tclCmdIL.c,v 1.1.2.7.2.1 1999/03/09 02:37:14 stanton Exp $
*/
#include "tclInt.h"
@@ -2829,9 +2829,6 @@ SortCompare(objPtr1, objPtr2, infoPtr)
infoPtr->resultCode = Tcl_EvalObjv(infoPtr->interp, objc, objv, 0);
if (infoPtr->resultCode != TCL_OK) {
- Tcl_Obj *errorPtr = Tcl_NewListObj(3, objv);
- int length;
- char *compareCmd = Tcl_GetStringFromObj(errorPtr, &length);
Tcl_AddErrorInfo(infoPtr->interp,
"\n (-compare command)");
return order;