summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2010-11-30 18:16:01 (GMT)
committerhobbs <hobbs@noemail.net>2010-11-30 18:16:01 (GMT)
commit9fef6968a9971c094e0945448a9589f4e796e938 (patch)
tree1813237c573abb3ecbb46ec846d9b34db02dac3a /generic/tclInt.decls
parent9b317c5baad995c6c1501eeacc157514c55d80c8 (diff)
downloadtcl-9fef6968a9971c094e0945448a9589f4e796e938.zip
tcl-9fef6968a9971c094e0945448a9589f4e796e938.tar.gz
tcl-9fef6968a9971c094e0945448a9589f4e796e938.tar.bz2
* generic/tclInt.decls, generic/tclInt.h, generic/tclIntDecls.h:
* generic/tclStubInit.c: TclFormatInt restored at slot 24 * generic/tclUtil.c (TclFormatInt): restore TclFormatInt func from 2005-07-05 macro-ization. Benchmarks indicate it is faster, as a key int->string routine (e.g. int-indexed arrays). FossilOrigin-Name: 2a8fac784cc952d6ac0239827d081439773ac995
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r--generic/tclInt.decls10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls
index ad35bf8..235e784 100644
--- a/generic/tclInt.decls
+++ b/generic/tclInt.decls
@@ -13,7 +13,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.121.2.5 2010/10/02 00:29:42 hobbs Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.121.2.6 2010/11/30 18:16:02 hobbs Exp $
library tcl
@@ -115,10 +115,10 @@ declare 22 generic {
declare 23 generic {
Proc *TclFindProc(Interp *iPtr, CONST char *procName)
}
-# Replaced with macro (see tclInt.h) in Tcl 8.5
-#declare 24 generic {
-# int TclFormatInt(char *buffer, long n)
-#}
+# Replaced with macro (see tclInt.h) in Tcl 8.5.0, restored in 8.5.10
+declare 24 generic {
+ int TclFormatInt(char *buffer, long n)
+}
declare 25 generic {
void TclFreePackageInfo(Interp *iPtr)
}