diff options
author | Kevin B Kenny <kennykb@acm.org> | 2001-11-16 21:41:13 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2001-11-16 21:41:13 (GMT) |
commit | 926545e0f27b16513efa8d15339cca02932e6874 (patch) | |
tree | d9a26af01617ce7c302a18e9d3a77517101bc3cd /generic | |
parent | 96e1762fbd024a762d4c36283ab77259c338f8ee (diff) | |
download | tcl-926545e0f27b16513efa8d15339cca02932e6874.zip tcl-926545e0f27b16513efa8d15339cca02932e6874.tar.gz tcl-926545e0f27b16513efa8d15339cca02932e6874.tar.bz2 |
Removed a rogue C++ comment that inadvertently got left in tclListObj.c
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclListObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |