summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2001-04-04 23:26:03 (GMT)
committerdgp@users.sourceforge.net <dgp>2001-04-04 23:26:03 (GMT)
commit4a046a99ec5233c1e4eef718bcbad953d5e8a735 (patch)
tree040afe85667a12a395500c3660ad7c9252c64d24
parent7a63de2cf27b65bd8c3af7e7730ab570aad99b96 (diff)
downloadtcl-4a046a99ec5233c1e4eef718bcbad953d5e8a735.zip
tcl-4a046a99ec5233c1e4eef718bcbad953d5e8a735.tar.gz
tcl-4a046a99ec5233c1e4eef718bcbad953d5e8a735.tar.bz2
Restore support for pre-ANSI compilers.
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclMain.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c788a3..a1e3a57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-04 Don Porter <dgp@users.sourceforge.net>
+
+ * unix/tclMain.c: Patch from Kevin Kenny to restore support of
+ pre-ANSI compilers. [Bug 413846, Patch 413842]
+
2001-04-04 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* unix/mkLinks: Updated to contain the new manpage.
diff --git a/generic/tclMain.c b/generic/tclMain.c
index c3cabbf..479ef52 100644
--- a/generic/tclMain.c
+++ b/generic/tclMain.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMain.c,v 1.11 2000/11/03 20:30:27 hobbs Exp $
+ * RCS: @(#) $Id: tclMain.c,v 1.12 2001/04/04 23:26:03 dgp Exp $
*/
#include "tcl.h"
@@ -404,7 +404,8 @@ Tcl_Main(argc, argv, appInitProc)
*/
void
-Tcl_SetMainLoop(Tcl_MainLoopProc *proc)
+Tcl_SetMainLoop(proc)
+ Tcl_MainLoopProc *proc;
{
mainLoopProc = proc;
}