diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2006-08-10 12:15:28 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2006-08-10 12:15:28 (GMT) |
| commit | f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077 (patch) | |
| tree | 8cd60dbc9d7cd070ffaff79758e86c8cca2f24bb /generic/tclUtil.c | |
| parent | 88138c5bb84fb9412f0fd84d89edb4f5084e1d2e (diff) | |
| download | tcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.zip tcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.tar.gz tcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.tar.bz2 | |
Various minor object file size efficiency fixes. [Bug 1530474]
Diffstat (limited to 'generic/tclUtil.c')
| -rw-r--r-- | generic/tclUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c index da57e34..3ab3a14 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUtil.c,v 1.68 2005/11/02 11:55:47 dkf Exp $ + * RCS: @(#) $Id: tclUtil.c,v 1.69 2006/08/10 12:15:31 dkf Exp $ */ #include "tclInt.h" @@ -2779,7 +2779,7 @@ TclGetProcessGlobalValue( (*(pgvPtr->proc))(&pgvPtr->value, &pgvPtr->numBytes, &pgvPtr->encoding); if (pgvPtr->value == NULL) { - Tcl_Panic("PGV Initializer did not initialize."); + Tcl_Panic("PGV Initializer did not initialize"); } Tcl_CreateExitHandler(FreeProcessGlobalValue, (ClientData) pgvPtr); } |
