summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2001-11-16 20:01:04 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2001-11-16 20:01:04 (GMT)
commit39fcfea4a14df2f64af2f0b186157d5ec9c91030 (patch)
tree580baa5a7e9751093a2c83da278179e0781a1aa1 /generic/tclBasic.c
parent92abf41d3582dceca104a6177d650952a41bdd87 (diff)
downloadtcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.zip
tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.gz
tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.bz2
Code reordering; execution levels made consistent [Bug 480896].
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index ce1381e..edb8bb6 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,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.36 2001/11/14 23:17:03 hobbs Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.37 2001/11/16 20:01:04 msofer Exp $
*/
#include "tclInt.h"
@@ -2829,7 +2829,7 @@ Tcl_EvalObjEx(interp, objPtr, flags)
iPtr->numLevels++;
if (iPtr->numLevels > iPtr->maxNestingDepth) {
Tcl_AppendToObj(Tcl_GetObjResult(interp),
- "too many nested calls to Tcl_EvalObj (infinite loop?)", -1);
+ "too many nested calls to Tcl_Eval (infinite loop?)", -1);
result = TCL_ERROR;
goto done;
}
@@ -2842,7 +2842,7 @@ Tcl_EvalObjEx(interp, objPtr, flags)
if (TclpCheckStackSpace() == 0) {
/*NOTREACHED*/
Tcl_AppendToObj(Tcl_GetObjResult(interp),
- "too many nested calls to Tcl_EvalObj (infinite loop?)", -1);
+ "too many nested calls to Tcl_Eval (infinite loop?)", -1);
result = TCL_ERROR;
goto done;
}