diff options
author | davidg <davidg> | 2000-08-10 18:24:52 (GMT) |
---|---|---|
committer | davidg <davidg> | 2000-08-10 18:24:52 (GMT) |
commit | d08d0f08b1369fd7940a2fdf2537fb1c8b073fb3 (patch) | |
tree | 13c30321bf41da90d4516dbe9f79999ffd43bc61 /generic/tclInt.h | |
parent | b3101a3f591cf286e57e54062f2a836336018836 (diff) | |
download | tcl-d08d0f08b1369fd7940a2fdf2537fb1c8b073fb3.zip tcl-d08d0f08b1369fd7940a2fdf2537fb1c8b073fb3.tar.gz tcl-d08d0f08b1369fd7940a2fdf2537fb1c8b073fb3.tar.bz2 |
2000-08-10 David Gravereaux <davygrvy@ajubasolutions.com>
* generic/tclObj.c: r1.15 accidentally changed a global mutex
name tclObjMutex to ObjMutex. Put the correct name back.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index b8571ee..bb3e32d 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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: tclInt.h,v 1.48 2000/07/22 01:53:24 ericm Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.49 2000/08/10 18:25:15 davidg Exp $ */ #ifndef _TCLINT @@ -2121,6 +2121,7 @@ EXTERN int TclCompileWhileCmd _ANSI_ARGS_((Tcl_Interp *interp, #else /* not TCL_MEM_DEBUG */ #ifdef TCL_THREADS +/* declared in tclObj.c */ extern Tcl_Mutex tclObjMutex; #endif |