diff options
author | welch <welch> | 1998-08-10 15:43:59 (GMT) |
---|---|---|
committer | welch <welch> | 1998-08-10 15:43:59 (GMT) |
commit | 35ef4bda26448abc0395b7088154c8e90036bf37 (patch) | |
tree | 96f016db103a5b4d10ed72aa0f5d153eccd62204 /generic/tclNamesp.c | |
parent | 32adce342e1a196c5fd93efad7e4ab9bac48a079 (diff) | |
download | tcl-35ef4bda26448abc0395b7088154c8e90036bf37.zip tcl-35ef4bda26448abc0395b7088154c8e90036bf37.tar.gz tcl-35ef4bda26448abc0395b7088154c8e90036bf37.tar.bz2 |
Moved data struct to tclInt.h
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 45367c7..6b0f3e8 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -40,21 +40,6 @@ static long numNsCreated = 0; /* - * Data structure used as the ClientData of imported commands: commands - * created in an namespace when it imports a "real" command from another - * namespace. - */ - -typedef struct ImportedCmdData { - Command *realCmdPtr; /* "Real" command that this imported command - * refers to. */ - Command *selfPtr; /* Pointer to this imported command. Needed - * only when deleting it in order to remove - * it from the real command's linked list of - * imported commands that refer to it. */ -} ImportedCmdData; - -/* * This structure contains a cached pointer to a namespace that is the * result of resolving the namespace's name in some other namespace. It is * the internal representation for a nsName object. It contains the |