diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-05-11 20:59:12 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-05-11 20:59:12 (GMT) |
commit | 0783b44c6a31a95775875f9ade3e0c5c6fe53eca (patch) | |
tree | ce8c2c4c4fda379987dc7b9a05634f8c9fa7c339 | |
parent | 2ce642c374a6403c5272469379b4f0b54c663bd9 (diff) | |
download | tcl-0783b44c6a31a95775875f9ade3e0c5c6fe53eca.zip tcl-0783b44c6a31a95775875f9ade3e0c5c6fe53eca.tar.gz tcl-0783b44c6a31a95775875f9ade3e0c5c6fe53eca.tar.bz2 |
* generic/tclInt.h: Removed TclEvalObjEx and TclGetSrcInfoForPc
from tclInt.h now they are in the internal stubs table.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclInt.h | 6 |
2 files changed, 6 insertions, 5 deletions
@@ -1,3 +1,8 @@ +2007-05-11 Pat Thoyts <patthoyts@users.sourceforge.net> + + * generic/tclInt.h: Removed TclEvalObjEx and TclGetSrcInfoForPc + from tclInt.h now they are in the internal stubs table. + 2007-05-09 Don Porter <dgp@users.sourceforge.net> * generic/tclInt.h: TclFinalizeThreadAlloc() is always defined, diff --git a/generic/tclInt.h b/generic/tclInt.h index 8a09246..05cab9c 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.309 2007/05/09 19:13:46 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.310 2007/05/11 20:59:13 patthoyts Exp $ */ #ifndef _TCLINT @@ -2247,9 +2247,6 @@ MODULE_SCOPE void TclDeleteNamespaceVars(Namespace *nsPtr); /* TIP #280 - Modified token based evulation, with line information */ MODULE_SCOPE int TclEvalEx (Tcl_Interp *interp, CONST char *script, int numBytes, int flags, int line); -MODULE_SCOPE int TclEvalObjEx(Tcl_Interp *interp, - register Tcl_Obj *objPtr, int flags, - CONST CmdFrame* invoker, int word); MODULE_SCOPE void TclExpandTokenArray(Tcl_Parse *parsePtr); MODULE_SCOPE int TclFileAttrsCmd(Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]); @@ -2292,7 +2289,6 @@ MODULE_SCOPE int TclGetOpenModeEx(Tcl_Interp *interp, CONST char *modeString, int *seekFlagPtr, int *binaryPtr); MODULE_SCOPE Tcl_Obj * TclGetProcessGlobalValue(ProcessGlobalValue *pgvPtr); -MODULE_SCOPE void TclGetSrcInfoForPc (CmdFrame* cfPtr); MODULE_SCOPE int TclGlob(Tcl_Interp *interp, char *pattern, Tcl_Obj *unquotedPrefix, int globFlags, Tcl_GlobTypeData *types); |