summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorwelch <welch>1998-07-06 22:13:34 (GMT)
committerwelch <welch>1998-07-06 22:13:34 (GMT)
commit644c34a1c3aafe4319ffdec03245ecaba6c5f7f4 (patch)
tree2bb022ce4f829c90028cb5c30f95f90a498396f5 /generic
parentbda3b6cd5c8e60849b2b336e9577f8d5bd7be7d5 (diff)
downloadtcl-644c34a1c3aafe4319ffdec03245ecaba6c5f7f4.zip
tcl-644c34a1c3aafe4319ffdec03245ecaba6c5f7f4.tar.gz
tcl-644c34a1c3aafe4319ffdec03245ecaba6c5f7f4.tar.bz2
Undid the change to Tcl_EvalObj
Diffstat (limited to 'generic')
-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