summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstanton <stanton>1998-10-06 00:36:19 (GMT)
committerstanton <stanton>1998-10-06 00:36:19 (GMT)
commita20edf3e5b35f1218d239bd0e04699d2b0008683 (patch)
tree509761c24501100981c48b32f9c0e1ac7b6a28b9
parent11eb151d297fbf390077a1e103954120b342e336 (diff)
downloadtcl-a20edf3e5b35f1218d239bd0e04699d2b0008683.zip
tcl-a20edf3e5b35f1218d239bd0e04699d2b0008683.tar.gz
tcl-a20edf3e5b35f1218d239bd0e04699d2b0008683.tar.bz2
* tclEvent.c: changed so USE_TCLALLOC is tested for value instead
of definition so that we can compile without the Tcl allocator
-rw-r--r--generic/tclEvent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index 1fc6cb4..20935a9 100644
--- a/generic/tclEvent.c
+++ b/generic/tclEvent.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: tclEvent.c,v 1.1.2.2 1998/09/24 23:58:47 stanton Exp $
+ * RCS: @(#) $Id: tclEvent.c,v 1.1.2.3 1998/10/06 00:36:19 stanton Exp $
*/
#include "tclInt.h"
@@ -688,7 +688,7 @@ TclInitSubsystems(argv0)
* interesting happens so we can use the allocators in the
* implementation of self-initializing locks.
*/
-#ifdef USE_TCLALLOC
+#if USE_TCLALLOC
TclInitAlloc();
#endif
#ifdef TCL_MEM_DEBUG