diff options
author | dgp <dgp@users.sourceforge.net> | 2006-12-11 18:54:10 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-12-11 18:54:10 (GMT) |
commit | d9089b0f76f5224ffc6d7f52e0cd6d8306820853 (patch) | |
tree | 62f996db7293dd70be80d53ca9a9a586181631a0 /generic/tclCompile.h | |
parent | 4a3621293e6822c41b4e6455bb06429a032c6eae (diff) | |
download | tcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.zip tcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.tar.gz tcl-d9089b0f76f5224ffc6d7f52e0cd6d8306820853.tar.bz2 |
* generic/tclBasic.c: Another step with all sorting operator commands
* generic/tclCompExpr.c: now routing through TEBC via
* generic/tclCompile.h: TclSortingOpCmd().
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index c864c3c..b34616c 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.64 2006/12/08 20:48:09 dgp Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.65 2006/12/11 18:54:11 dgp Exp $ */ #ifndef _TCLCOMPILATION @@ -858,6 +858,9 @@ MODULE_SCOPE void TclSetCmdNameObj(Tcl_Interp *interp, Tcl_Obj *objPtr, MODULE_SCOPE int TclSingleOpCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); +MODULE_SCOPE int TclSortingOpCmd(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); |