diff options
author | andreas_kupries <akupries@shaw.ca> | 2003-06-10 20:35:43 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2003-06-10 20:35:43 (GMT) |
commit | 474a30aa667f24a8686adf6e4054789d5f199484 (patch) | |
tree | 0fde6ce55627d197ae3f92a2302156dbcdd6fa0e /generic/tclConfig.c | |
parent | 92c15d605271fd6ecd23d9d0ad33c6d6f5edd3b9 (diff) | |
download | tcl-474a30aa667f24a8686adf6e4054789d5f199484.zip tcl-474a30aa667f24a8686adf6e4054789d5f199484.tar.gz tcl-474a30aa667f24a8686adf6e4054789d5f199484.tar.bz2 |
* generic/tclConfig.c (ASSOC_KEY): Changed the key to
"tclPackageAboutDict" (tcl prefix) to make collisions with the
keys of other packages more unlikely.
Diffstat (limited to 'generic/tclConfig.c')
-rw-r--r-- | generic/tclConfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclConfig.c b/generic/tclConfig.c index 5b03c98..e8c7be6 100644 --- a/generic/tclConfig.c +++ b/generic/tclConfig.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclConfig.c,v 1.2 2003/06/09 22:48:32 andreas_kupries Exp $ + * RCS: @(#) $Id: tclConfig.c,v 1.3 2003/06/10 20:35:48 andreas_kupries Exp $ */ #include "tclInt.h" @@ -28,7 +28,7 @@ * caller. */ -#define ASSOC_KEY "Package About Dict" +#define ASSOC_KEY "tclPackageAboutDict" /* * Static functions in this file: |