diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-05-26 01:25:59 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-05-26 01:25:59 (GMT) |
commit | deb12f9f60a4a57e4922c929ee5a7a3f6966e098 (patch) | |
tree | 0e06178b65f3cb3a4a76a355b8724bdb0df85b82 /generic/tclInt.h | |
parent | 3b5f432c9bb4ae184008bbd89f63fd2c35f242ec (diff) | |
download | tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.zip tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.gz tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.bz2 |
[Patch #424851]: Faster array searching & obj cleanup
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index cb7646b..e0ded8b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -11,7 +11,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.h,v 1.54 2001/05/17 02:13:03 hobbs Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.55 2001/05/26 01:25:59 msofer Exp $ */ #ifndef _TCLINT @@ -1592,6 +1592,9 @@ extern Tcl_ObjType tclIntType; extern Tcl_ObjType tclListType; extern Tcl_ObjType tclProcBodyType; extern Tcl_ObjType tclStringType; +extern Tcl_ObjType tclArraySearchType; +extern Tcl_ObjType tclIndexType; +extern Tcl_ObjType tclNsNameType; /* * Variables denoting the hash key types defined in the core. |