diff options
author | dgp <dgp@users.sourceforge.net> | 2006-12-12 17:21:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-12-12 17:21:38 (GMT) |
commit | de68040d322c721b0f2781f53d87871d05ab130e (patch) | |
tree | e903c3b82fb1e9a97363419b07c94bd324299ff9 /generic/tclCompile.h | |
parent | d9089b0f76f5224ffc6d7f52e0cd6d8306820853 (diff) | |
download | tcl-de68040d322c721b0f2781f53d87871d05ab130e.zip tcl-de68040d322c721b0f2781f53d87871d05ab130e.tar.gz tcl-de68040d322c721b0f2781f53d87871d05ab130e.tar.bz2 |
* generic/tclBasic.c: Final step routing all direct evaluation forms
* generic/tclCompExpr.c: of the operator commands through TEBC,
* generic/tclCompile.h: dropping all the routines in tclMathOp.c.
* generic/tclMathOp.c: Still needs Engineering Manual attention.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b34616c..96d1e81 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.65 2006/12/11 18:54:11 dgp Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.66 2006/12/12 17:21:42 dgp Exp $ */ #ifndef _TCLCOMPILATION @@ -861,6 +861,12 @@ MODULE_SCOPE int TclSingleOpCmd(ClientData clientData, MODULE_SCOPE int TclSortingOpCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); +MODULE_SCOPE int TclVariadicOpCmd(ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[]); +MODULE_SCOPE int TclNoIdentOpCmd(ClientData clientData, + Tcl_Interp *interp, int objc, + Tcl_Obj *CONST objv[]); #ifdef TCL_COMPILE_DEBUG MODULE_SCOPE void TclVerifyGlobalLiteralTable(Interp *iPtr); MODULE_SCOPE void TclVerifyLocalLiteralTable(CompileEnv *envPtr); |