summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2007-08-27 23:30:28 (GMT)
committerdas <das>2007-08-27 23:30:28 (GMT)
commitd3ff1482b1385c013d986d55057ff030df30e4ac (patch)
tree8f9e8ea64ed86303f293ea8de6417c7a1a60355e
parent5bddf0fdb52a72eb7ae2b5753c3fcbef906981ce (diff)
downloadtcl-d3ff1482b1385c013d986d55057ff030df30e4ac.zip
tcl-d3ff1482b1385c013d986d55057ff030df30e4ac.tar.gz
tcl-d3ff1482b1385c013d986d55057ff030df30e4ac.tar.bz2
typo
-rw-r--r--generic/tclCompExpr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c
index cc31754..eed1e9b 100644
--- a/generic/tclCompExpr.c
+++ b/generic/tclCompExpr.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: tclCompExpr.c,v 1.83 2007/08/27 19:56:51 dgp Exp $
+ * RCS: @(#) $Id: tclCompExpr.c,v 1.84 2007/08/27 23:30:28 das Exp $
*/
#include "tclInt.h"
@@ -778,7 +778,8 @@ ParseExpr(
* Tcl_IncrRefCount(literal);
* Tcl_DecrRefCount(objPtr);
*
- * However, the design of the "global" and "local" * LiteralTable does not permit the value of
+ * However, the design of the "global" and "local"
+ * LiteralTable does not permit the value of
* lePtr->objPtr to be changed. So rather than
* replace lePtr->objPtr, we do surgery to transfer
* the intrep of literal into it. Ugly stuff here