diff options
author | ericm <ericm> | 2000-07-19 22:15:28 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-07-19 22:15:28 (GMT) |
commit | 36c983a93395d03061b02a8ac82105313991650f (patch) | |
tree | ca5b2921b3c60013f2c00545146190946b6ef5e8 /generic/tclStubInit.c | |
parent | 8c6040fe85cad9ab5bb5452596ea1107e155f450 (diff) | |
download | tcl-36c983a93395d03061b02a8ac82105313991650f.zip tcl-36c983a93395d03061b02a8ac82105313991650f.tar.gz tcl-36c983a93395d03061b02a8ac82105313991650f.tar.bz2 |
* generic/tclStubInit.c:
* generic/tclObj.c:
* generic/tclInt.h:
* generic/tclHash.c:
* generic/tclDecls.h:
* generic/tcl.h:
* generic/tcl.decls:
* doc/Hash.3: Applied patch from Paul Duffin to extend hash tables
to allow custom key types, such as Tcl_Obj *'s, and others.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 93a680c..ad68ecf 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.38 2000/05/19 21:30:16 hobbs Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.39 2000/07/19 22:15:31 ericm Exp $ */ #include "tclInt.h" @@ -31,6 +31,10 @@ #undef Tcl_NewStringObj #undef Tcl_DumpActiveMemory #undef Tcl_ValidateAllMemory +#if TCL_PRESERVE_BINARY_COMPATABILITY +# undef Tcl_FindHashEntry +# undef Tcl_CreateHashEntry +#endif /* * WARNING: The contents of this file is automatically generated by the @@ -801,6 +805,10 @@ TclStubs tclStubs = { Tcl_IsChannelExisting, /* 400 */ Tcl_UniCharNcasecmp, /* 401 */ Tcl_UniCharCaseMatch, /* 402 */ + Tcl_FindHashEntry, /* 403 */ + Tcl_CreateHashEntry, /* 404 */ + Tcl_InitHashTableEx, /* 405 */ + Tcl_InitObjHashTable, /* 406 */ }; /* !END!: Do not edit above this line. */ |