diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-14 19:15:21 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-05-14 19:15:21 (GMT) |
commit | a87aa8a1be2c89d9174660ca97ea533474e73901 (patch) | |
tree | 529908500c377a1bdea18283d98eabf0d9e4d0ab /generic/tclCompile.h | |
parent | 18bff61a75956fcde40e851c585128b4357abeb6 (diff) | |
download | tcl-a87aa8a1be2c89d9174660ca97ea533474e73901.zip tcl-a87aa8a1be2c89d9174660ca97ea533474e73901.tar.gz tcl-a87aa8a1be2c89d9174660ca97ea533474e73901.tar.bz2 |
* generic/tclExecute.h:
* generic/tclCompile.h: the math functions receive a pointer to
top of the stack (tosPtr) instead of the execution environment
(eePtr). First step towards a change in the execution stack
management - it is now only used within TEBC.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index d9a3950..088218f 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.44 2004/04/02 18:54:39 msofer Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.45 2004/05/14 19:15:35 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -628,7 +628,7 @@ extern InstructionDesc tclInstructionTable[]; */ typedef int (CallBuiltinFuncProc) _ANSI_ARGS_((Tcl_Interp *interp, - ExecEnv *eePtr, ClientData clientData)); + Tcl_Obj **tosPtr, ClientData clientData)); typedef struct { char *name; /* Name of function. */ |