diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-01-18 19:09:55 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-01-18 19:09:55 (GMT) |
commit | 7471ab66a4d23af44031f17791706a069151c70f (patch) | |
tree | 40d02cf354797352140f7949f9db3724141b834a /unix | |
parent | 0412e22f32c9b254539268b402a14c24ca59f145 (diff) | |
download | tcl-7471ab66a4d23af44031f17791706a069151c70f.zip tcl-7471ab66a4d23af44031f17791706a069151c70f.tar.gz tcl-7471ab66a4d23af44031f17791706a069151c70f.tar.bz2 |
2000-01-18 Andreas Kupries <a.kupries@westend.com>
* Everything below belongs together, it fixes bug #123153.
* generic/tcl.h (line 342): A bit more explanation about the
default value for TCL_PRESERVE_BINARY_COMPATABILITY.
* generic/tcl.h (line 1208): Removed the macro 'Tcl_InitHashTable'
as it kills binary compatibility to 8.3 and earlier
versions. This is the main part of the patch/change.
* generic/tcl.decls (line 1469):
* generic/tclHash.c (Tcl_InitHashTable):
* generic/tclHash.c (Tcl_InitHashTableEx):
* generic/tclObj.c (Tcl_InitObjHashTable): Changed
'Tcl_InitHashTableEx' to 'Tcl_InitCustomHashTable'. This change
is more of an estethical nature, replacing the ubiquitous 'Ex'
suffix with a more meaningful name. The introduced binary
incompatibility is deemed acceptable as it is between alpha
versions. Updated callers.
* doc/Hash.3:
* unix/mkLinks: Changed 'Tcl_InitHashTableEx' to
'Tcl_InitCustomHashTable'.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mkLinks | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index 5337055..4cb02cb 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -472,7 +472,7 @@ if test -r GetVersion.3; then fi if test -r Hash.3; then rm -f Tcl_InitHashTable.3 - rm -f Tcl_InitHashTableEx.3 + rm -f Tcl_InitCustomHashTable.3 rm -f Tcl_InitObjHashTable.3 rm -f Tcl_DeleteHashTable.3 rm -f Tcl_CreateHashEntry.3 @@ -485,7 +485,7 @@ if test -r Hash.3; then rm -f Tcl_NextHashEntry.3 rm -f Tcl_HashStats.3 ln Hash.3 Tcl_InitHashTable.3 - ln Hash.3 Tcl_InitHashTableEx.3 + ln Hash.3 Tcl_InitCustomHashTable.3 ln Hash.3 Tcl_InitObjHashTable.3 ln Hash.3 Tcl_DeleteHashTable.3 ln Hash.3 Tcl_CreateHashEntry.3 |