summaryrefslogtreecommitdiffstats
path: root/generic/tclLiteral.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2010-02-17 15:40:54 (GMT)
committerdgp <dgp@users.sourceforge.net>2010-02-17 15:40:54 (GMT)
commit7db448ffbc8f56ff7e50d542ff112e61fa2f6d94 (patch)
treeeb7fc740f58f8b98c1c1c00ed7c892d9c4fee13b /generic/tclLiteral.c
parent318332ced5693c3e2995656c7149f52297e4578c (diff)
downloadtcl-7db448ffbc8f56ff7e50d542ff112e61fa2f6d94.zip
tcl-7db448ffbc8f56ff7e50d542ff112e61fa2f6d94.tar.gz
tcl-7db448ffbc8f56ff7e50d542ff112e61fa2f6d94.tar.bz2
missing comma
Diffstat (limited to 'generic/tclLiteral.c')
-rw-r--r--generic/tclLiteral.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclLiteral.c b/generic/tclLiteral.c
index cda9caf..05e1dba 100644
--- a/generic/tclLiteral.c
+++ b/generic/tclLiteral.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclLiteral.c,v 1.38 2010/02/16 14:09:07 dkf Exp $
+ * RCS: @(#) $Id: tclLiteral.c,v 1.39 2010/02/17 15:40:54 dgp Exp $
*/
#include "tclInt.h"
@@ -315,7 +315,7 @@ TclCreateLiteral(
#ifdef TCL_COMPILE_DEBUG
if (TclLookupLiteralEntry((Tcl_Interp *) iPtr, objPtr) != NULL) {
Tcl_Panic("%s: literal \"%.*s\" found globally but shouldn't be",
- "TclRegisterLiteral" (length>60? 60 : length), bytes);
+ "TclRegisterLiteral", (length>60? 60 : length), bytes);
}
#endif