summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--unix/tclUnixInit.c8
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a03454..22d5c43 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-13 Miguel Sofer <msofer@users.sf.net>
+
+ * unix/tclUnixInit.c: the TCL_NO_STACK_CHECK was being incorrectly
+ undefined here; this should be set (or not) in the compile
+ options, it is used elsewhere and needs to be consistent.
+
2007-11-13 Pat Thoyts <patthoyts@users.sourceforge.net>
* unix/tcl.m4: Added autoconf goo to detect and make use of
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index d45f722..7f725cb 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -7,7 +7,7 @@
* Copyright (c) 1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclUnixInit.c,v 1.79 2007/11/11 05:24:02 das Exp $
+ * RCS: @(#) $Id: tclUnixInit.c,v 1.80 2007/11/13 17:13:07 msofer Exp $
*/
#include "tclInt.h"
@@ -38,12 +38,10 @@
#endif
/*
- * Define this if you want to revert to the old behavior of never checking the
- * stack.
+ * Define TCL_NO_STACK_CHECK in the compiler options if you want to revert to
+ * the old behavior of never checking the stack.
*/
-#undef TCL_NO_STACK_CHECK
-
/*
* Define this if you want to see a lot of output regarding stack checking.
*/