diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-08-07 15:50:28 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-08-07 15:50:28 (GMT) |
commit | 7f1cc0d653321745c638522de84b67b1ac0bb33a (patch) | |
tree | dd76899898ecea2044e2c6dba1107bf8c29e5fa7 /generic/tclObj.c | |
parent | a8fc60bdf11abc47568df177b8c3d80cb96f33db (diff) | |
download | tcl-7f1cc0d653321745c638522de84b67b1ac0bb33a.zip tcl-7f1cc0d653321745c638522de84b67b1ac0bb33a.tar.gz tcl-7f1cc0d653321745c638522de84b67b1ac0bb33a.tar.bz2 |
* generic/tclCompile.h:
* generic/tclObj.c: making tclCmdNameType static ([Bug 584567],
Don Porter).
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 2c5b468..2fb036c 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.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: tclObj.c,v 1.36 2002/08/07 14:25:01 msofer Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.37 2002/08/07 15:50:29 msofer Exp $ */ #include "tclInt.h" @@ -156,7 +156,7 @@ Tcl_HashKeyType tclObjHashKeyType = { * name") argument in a Tcl command. */ -Tcl_ObjType tclCmdNameType = { +static Tcl_ObjType tclCmdNameType = { "cmdName", /* name */ FreeCmdNameInternalRep, /* freeIntRepProc */ DupCmdNameInternalRep, /* dupIntRepProc */ |