summaryrefslogtreecommitdiffstats
path: root/generic/tclNamesp.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2001-05-26 01:25:59 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2001-05-26 01:25:59 (GMT)
commitdeb12f9f60a4a57e4922c929ee5a7a3f6966e098 (patch)
tree0e06178b65f3cb3a4a76a355b8724bdb0df85b82 /generic/tclNamesp.c
parent3b5f432c9bb4ae184008bbd89f63fd2c35f242ec (diff)
downloadtcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.zip
tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.gz
tcl-deb12f9f60a4a57e4922c929ee5a7a3f6966e098.tar.bz2
[Patch #424851]: Faster array searching & obj cleanup
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r--generic/tclNamesp.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 577a139..e570c24 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -19,7 +19,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclNamesp.c,v 1.23 2001/05/15 14:19:13 msofer Exp $
+ * RCS: @(#) $Id: tclNamesp.c,v 1.24 2001/05/26 01:25:59 msofer Exp $
*/
#include "tclInt.h"
@@ -166,7 +166,7 @@ Tcl_ObjType tclNsNameType = {
* None.
*
* Side effects:
- * The namespace object type is registered with the Tcl compiler.
+ * None.
*
*----------------------------------------------------------------------
*/
@@ -174,7 +174,9 @@ Tcl_ObjType tclNsNameType = {
void
TclInitNamespaceSubsystem()
{
- Tcl_RegisterObjType(&tclNsNameType);
+ /*
+ * Does nothing for now.
+ */
}
/*