summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-11-13 13:07:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-11-13 13:07:41 (GMT)
commit55e6c0333341b101e68407be7eebe42f829c9f33 (patch)
tree3b69b58b8886345d39a4baaa84342e6860001df3 /generic/tclBasic.c
parent19ff89ec05fbfdb2e383a89c9f522e5474f484fd (diff)
downloadtcl-55e6c0333341b101e68407be7eebe42f829c9f33.zip
tcl-55e6c0333341b101e68407be7eebe42f829c9f33.tar.gz
tcl-55e6c0333341b101e68407be7eebe42f829c9f33.tar.bz2
merge updates from HEAD
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index bd4a102..82df237 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.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: tclBasic.c,v 1.244.2.14 2007/11/12 19:18:13 dgp Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.244.2.15 2007/11/13 13:07:41 dgp Exp $
*/
#include "tclInt.h"
@@ -3426,7 +3426,7 @@ TclInterpReady(
* any previous error information.
*/
- TclResetResult(iPtr);
+ Tcl_ResetResult(interp);
/*
* If the interpreter has been deleted, return an error.
@@ -5398,7 +5398,6 @@ Tcl_AddObjErrorInfo(
}
Tcl_AppendToObj(iPtr->errorInfo, message, length);
}
- ((Interp *) interp)->flags |= INTERP_RESULT_UNCLEAN;
}
/*