summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authorhobbs <hobbs>2010-11-30 18:17:26 (GMT)
committerhobbs <hobbs>2010-11-30 18:17:26 (GMT)
commit79fc377e16fe1fb9074418c7fa5a4e06b9da28f4 (patch)
tree2e74b64a52ceabd97aefaa960af88dffe3bc4c09 /generic/tclInt.decls
parent7c9aebb4cdd638855ec47506b5dbe8d5b425c577 (diff)
downloadtcl-79fc377e16fe1fb9074418c7fa5a4e06b9da28f4.zip
tcl-79fc377e16fe1fb9074418c7fa5a4e06b9da28f4.tar.gz
tcl-79fc377e16fe1fb9074418c7fa5a4e06b9da28f4.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).
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 75780d5..eb18d99 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.151 2010/11/28 23:20:10 kennykb Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.152 2010/11/30 18:17:26 hobbs Exp $
library tcl
@@ -116,10 +116,10 @@ declare 22 {
declare 23 {
Proc *TclFindProc(Interp *iPtr, const char *procName)
}
-# Replaced with macro (see tclInt.h) in Tcl 8.5
-#declare 24 {
-# int TclFormatInt(char *buffer, long n)
-#}
+# Replaced with macro (see tclInt.h) in Tcl 8.5.0, restored in 8.5.10
+declare 24 {
+ int TclFormatInt(char *buffer, long n)
+}
declare 25 {
void TclFreePackageInfo(Interp *iPtr)
}