summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2001-11-16 21:41:13 (GMT)
committerKevin B Kenny <kennykb@acm.org>2001-11-16 21:41:13 (GMT)
commit926545e0f27b16513efa8d15339cca02932e6874 (patch)
treed9a26af01617ce7c302a18e9d3a77517101bc3cd
parent96e1762fbd024a762d4c36283ab77259c338f8ee (diff)
downloadtcl-926545e0f27b16513efa8d15339cca02932e6874.zip
tcl-926545e0f27b16513efa8d15339cca02932e6874.tar.gz
tcl-926545e0f27b16513efa8d15339cca02932e6874.tar.bz2
Removed a rogue C++ comment that inadvertently got left in tclListObj.c
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclListObj.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c3ae688..4aae0c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-11-16 Kevin B. Kenny <kennykb@users.sourceforge.net>
+ * generic/tclListObj.c: removed a C++-style comment that
+ was inadvertently left in the source code.
+
2001-11-16 Jeff Hobbs <jeffh@ActiveState.com>
* unix/tclUnixInit.c: added HAVE_LANGINFO code block.
diff --git a/generic/tclListObj.c b/generic/tclListObj.c
index 39f45d4..2db0494 100644
--- a/generic/tclListObj.c
+++ b/generic/tclListObj.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: tclListObj.c,v 1.10 2001/11/14 23:17:03 hobbs Exp $
+ * RCS: @(#) $Id: tclListObj.c,v 1.11 2001/11/16 21:41:14 kennykb Exp $
*/
#include "tclInt.h"
@@ -1388,7 +1388,7 @@ FreeListInternalRep(listPtr)
}
ckfree((char *) elemPtrs);
ckfree((char *) listRepPtr);
- // KBK temp
+
listPtr->internalRep.twoPtrValue.ptr1 = NULL;
listPtr->internalRep.twoPtrValue.ptr2 = NULL;
}