diff options
author | dgp <dgp@users.sourceforge.net> | 2007-07-02 21:10:50 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-07-02 21:10:50 (GMT) |
commit | 98eee8b9d8af4e5fff52f63d323e3bef3fc84725 (patch) | |
tree | 8313a19cf5977de0d0fb765b18bd2a81c915167d /generic/tclStubInit.c | |
parent | b56947219139a3ea4cd1fa607c4fb4a2aea1b292 (diff) | |
download | tcl-98eee8b9d8af4e5fff52f63d323e3bef3fc84725.zip tcl-98eee8b9d8af4e5fff52f63d323e3bef3fc84725.tar.gz tcl-98eee8b9d8af4e5fff52f63d323e3bef3fc84725.tar.bz2 |
* generic/tcl.h: Removed TCL_PRESERVE_BINARY_COMPATIBILITY and
* generic/tclHash.c: any code enabled when it is set to 0. We will
* generic/tclStubInit.c: always want to preserve binary compat
of the structs that appear in the interface through the 8.* series of
releases, so it's pointless to drag around this never-enabled
alternative.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 361d7d7..35bfa12 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.140 2007/05/05 23:36:36 dkf Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.141 2007/07/02 21:10:52 dgp Exp $ */ #include "tclInt.h" @@ -31,10 +31,8 @@ #undef Tcl_NewStringObj #undef Tcl_DumpActiveMemory #undef Tcl_ValidateAllMemory -#if TCL_PRESERVE_BINARY_COMPATABILITY -# undef Tcl_FindHashEntry -# undef Tcl_CreateHashEntry -#endif +#undef Tcl_FindHashEntry +#undef Tcl_CreateHashEntry /* * Keep a record of the original Notifier procedures, created in the |