summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorwelch <welch@noemail.net>1998-07-06 22:13:33 (GMT)
committerwelch <welch@noemail.net>1998-07-06 22:13:33 (GMT)
commit12f677e553fa714a65e17534500c9c4d6340c85d (patch)
tree2bb022ce4f829c90028cb5c30f95f90a498396f5 /generic/tclBasic.c
parent6edcff89eee104e1203903e241905ef26c25b2a1 (diff)
downloadtcl-12f677e553fa714a65e17534500c9c4d6340c85d.zip
tcl-12f677e553fa714a65e17534500c9c4d6340c85d.tar.gz
tcl-12f677e553fa714a65e17534500c9c4d6340c85d.tar.bz2
Undid the change to Tcl_EvalObj
FossilOrigin-Name: c11bb3017267741e33914c348053aa3f687d7e60
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 e8db382..029cce6 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * SCCS: %Z% $Id: tclBasic.c,v 1.5 1998/07/01 19:09:11 escoffon Exp $
+ * SCCS: %Z% $Id: tclBasic.c,v 1.6 1998/07/06 22:13:34 welch Exp $
*/
#include "tclInt.h"
@@ -2437,13 +2437,12 @@ Tcl_Eval(interp, string)
#undef Tcl_EvalObj
int
-Tcl_EvalObj(interp, objPtr, dummy)
+Tcl_EvalObj(interp, objPtr)
Tcl_Interp *interp; /* Token for command interpreter
* (returned by a previous call to
* Tcl_CreateInterp). */
Tcl_Obj *objPtr; /* Pointer to object containing
* commands to execute. */
- int dummy; /* not used */
{
register Interp *iPtr = (Interp *) interp;
int flags; /* Interp->evalFlags value when the