summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordavidg <davidg>2000-08-10 18:24:52 (GMT)
committerdavidg <davidg>2000-08-10 18:24:52 (GMT)
commitd08d0f08b1369fd7940a2fdf2537fb1c8b073fb3 (patch)
tree13c30321bf41da90d4516dbe9f79999ffd43bc61 /generic/tclInt.h
parentb3101a3f591cf286e57e54062f2a836336018836 (diff)
downloadtcl-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.h3
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