summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-01-23 17:31:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-01-23 17:31:41 (GMT)
commitd3dba3f8855bf00200865c0c8b783e4bd57d1b32 (patch)
treeba68c1588101bc6f220f26cf814d2bcd415d139f /generic/tclCompile.h
parentfcd8250c0cb0e5d3302d0e60110c7f18c070bcb2 (diff)
downloadtcl-d3dba3f8855bf00200865c0c8b783e4bd57d1b32.zip
tcl-d3dba3f8855bf00200865c0c8b783e4bd57d1b32.tar.gz
tcl-d3dba3f8855bf00200865c0c8b783e4bd57d1b32.tar.bz2
* generic/tclCompile.h: Demote TclCompEvalObj() from internal stubs to
* generic/tclInt.decls: a MODULE_SCOPE routine declared in tclCompile.h. * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c:
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 98776ca..fae5553 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -9,7 +9,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.88 2008/01/16 21:05:48 msofer Exp $
+ * RCS: @(#) $Id: tclCompile.h,v 1.89 2008/01/23 17:31:42 dgp Exp $
*/
#ifndef _TCLCOMPILATION
@@ -840,11 +840,8 @@ MODULE_SCOPE int TclEvalObjvInternal(Tcl_Interp *interp,
*----------------------------------------------------------------
*/
-/*
- * Declaration moved to the internal stubs table
- *
-MODULE_SCOPE int TclCompEvalObj(Tcl_Interp *interp, Tcl_Obj *objPtr);
- */
+MODULE_SCOPE int TclCompEvalObj(Tcl_Interp *interp, Tcl_Obj *objPtr,
+ const CmdFrame *invoker, int word);
/*
*----------------------------------------------------------------