diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-10 12:15:28 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-10 12:15:28 (GMT) |
commit | 5fecb2e14300561bac581946809bf4414edb16a3 (patch) | |
tree | 8cd60dbc9d7cd070ffaff79758e86c8cca2f24bb /generic/tclHash.c | |
parent | 3f4ee0c4c41cca715f2b78d15c7823ab14e0cb62 (diff) | |
download | tcl-5fecb2e14300561bac581946809bf4414edb16a3.zip tcl-5fecb2e14300561bac581946809bf4414edb16a3.tar.gz tcl-5fecb2e14300561bac581946809bf4414edb16a3.tar.bz2 |
Various minor object file size efficiency fixes. [Bug 1530474]
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r-- | generic/tclHash.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c index 04159d8..3faadb9 100644 --- a/generic/tclHash.c +++ b/generic/tclHash.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclHash.c,v 1.24 2005/10/31 15:59:41 dkf Exp $ + * RCS: @(#) $Id: tclHash.c,v 1.25 2006/08/10 12:15:31 dkf Exp $ */ #include "tclInt.h" @@ -178,7 +178,7 @@ Tcl_InitCustomHashTable( * behaviour of this table. */ { #if (TCL_SMALL_HASH_TABLE != 4) - Tcl_Panic("Tcl_InitCustomHashTable: TCL_SMALL_HASH_TABLE is %d, not 4\n", + Tcl_Panic("Tcl_InitCustomHashTable: TCL_SMALL_HASH_TABLE is %d, not 4", TCL_SMALL_HASH_TABLE); #endif @@ -282,7 +282,7 @@ Tcl_FindHashEntry( #else typePtr = tablePtr->typePtr; if (typePtr == NULL) { - Tcl_Panic("called Tcl_FindHashEntry on deleted table"); + Tcl_Panic("called %s on deleted table", "Tcl_FindHashEntry"); return NULL; } #endif @@ -381,7 +381,7 @@ Tcl_CreateHashEntry( #else typePtr = tablePtr->typePtr; if (typePtr == NULL) { - Tcl_Panic("called Tcl_CreateHashEntry on deleted table"); + Tcl_Panic("called %s on deleted table", "Tcl_CreateHashEntry"); return NULL; } #endif @@ -753,7 +753,7 @@ Tcl_HashStats( #else typePtr = tablePtr->typePtr; if (typePtr == NULL) { - Tcl_Panic("called Tcl_HashStats on deleted table"); + Tcl_Panic("called %s on deleted table", "Tcl_HashStats"); return NULL; } #endif @@ -1072,7 +1072,7 @@ BogusFind( Tcl_HashTable *tablePtr, /* Table in which to lookup entry. */ CONST char *key) /* Key to use to find matching entry. */ { - Tcl_Panic("called Tcl_FindHashEntry on deleted table"); + Tcl_Panic("called %s on deleted table", "Tcl_FindHashEntry"); return NULL; } @@ -1102,7 +1102,7 @@ BogusCreate( int *newPtr) /* Store info here telling whether a new entry * was created. */ { - Tcl_Panic("called Tcl_CreateHashEntry on deleted table"); + Tcl_Panic("called %s on deleted table", "Tcl_CreateHashEntry"); return NULL; } #endif |