summaryrefslogtreecommitdiffstats
path: root/generic/tcl.decls
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-08-24 06:17:55 (GMT)
committernijtmans <nijtmans>2010-08-24 06:17:55 (GMT)
commit094ad72da5a2a01b8f27f294fc2e014cbf8b039a (patch)
tree86295f226269a67dd21e53bbcb7039ac3fb18b4e /generic/tcl.decls
parentd7654bc8b06121e83a420b729d8719322c7d1f3a (diff)
downloadtcl-094ad72da5a2a01b8f27f294fc2e014cbf8b039a.zip
tcl-094ad72da5a2a01b8f27f294fc2e014cbf8b039a.tar.gz
tcl-094ad72da5a2a01b8f27f294fc2e014cbf8b039a.tar.bz2
[Bug 3007895] Tcl_(Find|Create)HashEntry stub entries can never be called.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r--generic/tcl.decls6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls
index 0e9ef77..a1ad722 100644
--- a/generic/tcl.decls
+++ b/generic/tcl.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: tcl.decls,v 1.176 2010/08/14 17:13:02 nijtmans Exp $
+# RCS: @(#) $Id: tcl.decls,v 1.177 2010/08/24 06:17:55 nijtmans Exp $
library tcl
@@ -1495,11 +1495,11 @@ declare 420 generic {
const Tcl_UniChar *uniPattern, int nocase)
}
declare 421 generic {
- Tcl_HashEntry *Tcl_FindHashEntry(Tcl_HashTable *tablePtr, const char *key)
+ Tcl_HashEntry *Tcl_FindHashEntry(Tcl_HashTable *tablePtr, const void *key)
}
declare 422 generic {
Tcl_HashEntry *Tcl_CreateHashEntry(Tcl_HashTable *tablePtr,
- const char *key, int *newPtr)
+ const void *key, int *newPtr)
}
declare 423 generic {
void Tcl_InitCustomHashTable(Tcl_HashTable *tablePtr, int keyType,