diff options
author | dgp <dgp@users.sourceforge.net> | 2003-10-21 20:42:04 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-10-21 20:42:04 (GMT) |
commit | 984a7acccb19942338e86c016a09739bb0042873 (patch) | |
tree | bda6cc6bd631609293c7c9d0efb6b63984fda7fe /generic/tclExecute.c | |
parent | 1a2fd83adccf82ab95aa2a1360a348700c5cfdbb (diff) | |
download | tcl-984a7acccb19942338e86c016a09739bb0042873.zip tcl-984a7acccb19942338e86c016a09739bb0042873.tar.gz tcl-984a7acccb19942338e86c016a09739bb0042873.tar.bz2 |
Removed variables that are no longer used.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 6f26e10..f794543 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.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: tclExecute.c,v 1.111 2003/10/14 15:44:52 dgp Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.112 2003/10/21 20:42:04 dgp Exp $ */ #include "tclInt.h" @@ -4431,7 +4431,6 @@ ValidatePcAndStackTop(codePtr, pc, stackTop, stackLowerBound) if ((stackTop < stackLowerBound) || (stackTop > stackUpperBound)) { int numChars; char *cmd = GetSrcInfoForPc(pc, codePtr, &numChars); - char *ellipsis = ""; fprintf(stderr, "\nBad stack top %d at pc %u in TclExecuteByteCode (min %i, max %i)", stackTop, relativePc, stackLowerBound, stackUpperBound); |