summaryrefslogtreecommitdiffstats
path: root/generic/tclEvent.c
diff options
context:
space:
mode:
authorvasiljevic <zv@archiware.com>2004-07-15 09:40:39 (GMT)
committervasiljevic <zv@archiware.com>2004-07-15 09:40:39 (GMT)
commitfb349d117513e5d92abef593a66078b176225ed3 (patch)
tree564f1df1deeff56cee7a49457dedfe897e65b1a3 /generic/tclEvent.c
parent03c72896366d45b5f5dd85fbe2af12d22e8a5162 (diff)
downloadtcl-fb349d117513e5d92abef593a66078b176225ed3.zip
tcl-fb349d117513e5d92abef593a66078b176225ed3.tar.gz
tcl-fb349d117513e5d92abef593a66078b176225ed3.tar.bz2
Backout of changes to fix the Tcl Bug #770053.
See SF bugreport for more info.
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r--generic/tclEvent.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index e75da52..6b14e59 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.28.2.5 2004/07/13 19:04:54 vasiljevic Exp $
+ * RCS: @(#) $Id: tclEvent.c,v 1.28.2.6 2004/07/15 09:40:39 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -1192,7 +1192,12 @@ NewThreadProc(ClientData clientData)
threadClientData = cdPtr->clientData;
Tcl_Free((char*)clientData); /* Allocated in Tcl_CreateThread() */
- TclInitNotifier();
+ /*
+ * Please see the SF Bug #770053 comments to find out why
+ * this one below is commented out.
+ */
+
+ /* TclInitNotifier(); */
(*threadProc)(threadClientData);