diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-28 22:48:42 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-28 22:48:42 (GMT) |
commit | adecfb361563dfde20ccc0336337bb5898faf2a8 (patch) | |
tree | 4a7c06cbcd13152d4322ca0b651ba38dc6b77cc2 /generic/tclInt.decls | |
parent | 7c92250a21bfae5a3191b47f1fb4e81a0d58ba40 (diff) | |
download | tcl-adecfb361563dfde20ccc0336337bb5898faf2a8.zip tcl-adecfb361563dfde20ccc0336337bb5898faf2a8.tar.gz tcl-adecfb361563dfde20ccc0336337bb5898faf2a8.tar.bz2 |
Insert of calling point in middle of procedure code. Also cleaned up how
[apply] terms generate stack trace info.
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index d2fbb20..4cca690 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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.decls,v 1.102 2006/10/27 12:53:43 dkf Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.103 2006/10/28 22:48:42 dkf Exp $ library tcl @@ -894,10 +894,16 @@ declare 225 generic { declare 226 generic { int TclObjBeingDeleted(Tcl_Obj *objPtr) } + declare 227 generic { void TclSetNsPath(Namespace *nsPtr, int pathLength, Tcl_Namespace *pathAry[]) } +declare 228 generic { + int TclObjInterpProcCore(register Tcl_Interp *interp, CallFrame *framePtr, + Tcl_Obj *procNameObj, int isLambda, int skip, + ProcErrorProc errorProc) +} ############################################################################## |