summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmds.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2006-08-10 12:15:28 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2006-08-10 12:15:28 (GMT)
commitf0a22bb5ec29ecdafdad1eecf345a4ef65d9b077 (patch)
tree8cd60dbc9d7cd070ffaff79758e86c8cca2f24bb /generic/tclCompCmds.c
parent88138c5bb84fb9412f0fd84d89edb4f5084e1d2e (diff)
downloadtcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.zip
tcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.tar.gz
tcl-f0a22bb5ec29ecdafdad1eecf345a4ef65d9b077.tar.bz2
Various minor object file size efficiency fixes. [Bug 1530474]
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r--generic/tclCompCmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c
index e62ab03..f64d14c 100644
--- a/generic/tclCompCmds.c
+++ b/generic/tclCompCmds.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCompCmds.c,v 1.83 2005/12/18 22:42:18 dkf Exp $
+ * RCS: @(#) $Id: tclCompCmds.c,v 1.84 2006/08/10 12:15:30 dkf Exp $
*/
#include "tclInt.h"
@@ -466,7 +466,7 @@ TclCompileCatchCmd(
*/
if (TclFixupForwardJumpToHere(envPtr, &jumpFixup, 127)) {
- Tcl_Panic("TclCompileCatchCmd: bad jump distance %d\n",
+ Tcl_Panic("TclCompileCatchCmd: bad jump distance %d",
CurrentOffset(envPtr) - jumpFixup.codeOffset);
}
TclEmitOpcode(INST_END_CATCH, envPtr);