diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-12-14 21:11:42 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-12-14 21:11:42 (GMT) |
commit | bd20925e673c0a425280fc0163ce6febaf8c1e31 (patch) | |
tree | 107f654f002e993a551fe1925e706a97939c8a44 /generic/tclProc.c | |
parent | e648edc8fd0e8e6aa1d499e3392456a056f5acce (diff) | |
download | tcl-bd20925e673c0a425280fc0163ce6febaf8c1e31.zip tcl-bd20925e673c0a425280fc0163ce6febaf8c1e31.tar.gz tcl-bd20925e673c0a425280fc0163ce6febaf8c1e31.tar.bz2 |
changing the isProcCallFrame field of the CallFrame struct from a 0/1 field
to flags. Should be perfectly backwards compatible.
Diffstat (limited to 'generic/tclProc.c')
-rw-r--r-- | generic/tclProc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclProc.c b/generic/tclProc.c index 5ae99c1..bcf82d2 100644 --- a/generic/tclProc.c +++ b/generic/tclProc.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclProc.c,v 1.67 2004/12/10 13:09:15 msofer Exp $ + * RCS: @(#) $Id: tclProc.c,v 1.68 2004/12/14 21:11:47 msofer Exp $ */ #include "tclInt.h" @@ -976,7 +976,7 @@ TclObjInterpProc(clientData, interp, objc, objv) */ result = Tcl_PushCallFrame(interp, (Tcl_CallFrame *) framePtr, - (Tcl_Namespace *) nsPtr, /*isProcCallFrame*/ 1); + (Tcl_Namespace *) nsPtr, FRAME_IS_PROC); if (result != TCL_OK) { return result; |