diff options
author | dgp <dgp@users.sourceforge.net> | 2005-06-07 21:46:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-06-07 21:46:08 (GMT) |
commit | 3d9cb3d71e47525ba2c3176b8c64e6133ed9dd75 (patch) | |
tree | 862a66f9d58f2b9acc7bb0b43fc6f7f932dcc8a4 /generic/tclNamesp.c | |
parent | c2e9dac276543c87f90a314405d70427e7a9e642 (diff) | |
download | tcl-3d9cb3d71e47525ba2c3176b8c64e6133ed9dd75.zip tcl-3d9cb3d71e47525ba2c3176b8c64e6133ed9dd75.tar.gz tcl-3d9cb3d71e47525ba2c3176b8c64e6133ed9dd75.tar.bz2 |
* generic/tclInt.h: Reduced the Tcl_ObjTypes "index",
* generic/tclIndexObj.c: "enembleCmd", "localVarName", and
* generic/tclNamesp.c: "levelReference" to file static scope.
* generic/tclProc.c:
* generic/tclVar.c:
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index c49bd43..9935f47 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -21,7 +21,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.76 2005/05/30 00:04:48 dkf Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.77 2005/06/07 21:46:18 dgp Exp $ */ #include "tclInt.h" @@ -299,7 +299,7 @@ Tcl_ObjType tclNsNameType = { * the real command that implements it. */ -Tcl_ObjType tclEnsembleCmdType = { +static Tcl_ObjType ensembleCmdType = { "ensembleCommand", /* the type's name */ FreeEnsembleCmdRep, /* freeIntRepProc */ DupEnsembleCmdRep, /* dupIntRepProc */ @@ -5856,7 +5856,7 @@ NsEnsembleImplementationCmd(clientData, interp, objc, objv) * subcommand. */ - if (objv[1]->typePtr == &tclEnsembleCmdType) { + if (objv[1]->typePtr == &ensembleCmdType) { EnsembleCmdRep *ensembleCmd = (EnsembleCmdRep *) objv[1]->internalRep.otherValuePtr; if (ensembleCmd->nsPtr == ensemblePtr->nsPtr && @@ -6152,7 +6152,7 @@ MakeCachedEnsembleCommand(objPtr, ensemblePtr, subcommandName, prefixObjPtr) register EnsembleCmdRep *ensembleCmd; int length; - if (objPtr->typePtr == &tclEnsembleCmdType) { + if (objPtr->typePtr == &ensembleCmdType) { ensembleCmd = (EnsembleCmdRep *) objPtr->internalRep.otherValuePtr; Tcl_DecrRefCount(ensembleCmd->realPrefixObj); ensembleCmd->nsPtr->refCount--; @@ -6169,7 +6169,7 @@ MakeCachedEnsembleCommand(objPtr, ensemblePtr, subcommandName, prefixObjPtr) TclFreeIntRep(objPtr); ensembleCmd = (EnsembleCmdRep *) ckalloc(sizeof(EnsembleCmdRep)); objPtr->internalRep.otherValuePtr = (VOID *) ensembleCmd; - objPtr->typePtr = &tclEnsembleCmdType; + objPtr->typePtr = &ensembleCmdType; } /* @@ -6596,7 +6596,7 @@ DupEnsembleCmdRep(objPtr, copyPtr) ckalloc(sizeof(EnsembleCmdRep)); int length = strlen(ensembleCmd->fullSubcmdName); - copyPtr->typePtr = &tclEnsembleCmdType; + copyPtr->typePtr = &ensembleCmdType; copyPtr->internalRep.otherValuePtr = (VOID *) ensembleCopy; ensembleCopy->nsPtr = ensembleCmd->nsPtr; ensembleCopy->epoch = ensembleCmd->epoch; |