summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-01 12:45:17 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-01 12:45:17 (GMT)
commita4f55f2e8217331b1246d87b5244116fbe7be28b (patch)
treeb1e8471c56791d7d6064499e823653970b1550a6 /generic/tclInt.decls
parent659cfd43ab1e3669896b987ce4d501df9e9b80cc (diff)
downloadtcl-a4f55f2e8217331b1246d87b5244116fbe7be28b.zip
tcl-a4f55f2e8217331b1246d87b5244116fbe7be28b.tar.gz
tcl-a4f55f2e8217331b1246d87b5244116fbe7be28b.tar.bz2
Speed up [upvar] and [uplevel] by not forcing level references to be parsed
as strings every time through. [Patch 1037357]
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r--generic/tclInt.decls6
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls
index 32b43e0..e25d521 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.79 2004/09/27 16:24:24 dgp Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.80 2004/10/01 12:45:18 dkf Exp $
library tcl
@@ -801,6 +801,10 @@ declare 197 generic {
int TclCompEvalObj (Tcl_Interp *interp, Tcl_Obj *objPtr)
}
+declare 198 generic {
+ int TclObjGetFrame(Tcl_Interp *interp, Tcl_Obj *objPtr,
+ CallFrame **framePtrPtr)
+}
##############################################################################