summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-04-04 08:09:14 (GMT)
committerhobbs <hobbs@noemail.net>2000-04-04 08:09:14 (GMT)
commitea496991cc0672160ad03339892154eea4e4d96d (patch)
tree081f4f92508c55c2111c3f453a4e311bdcb132d5
parent599e2614876fb68395a353ba3de60c15c90448c4 (diff)
downloadtk-ea496991cc0672160ad03339892154eea4e4d96d.zip
tk-ea496991cc0672160ad03339892154eea4e4d96d.tar.gz
tk-ea496991cc0672160ad03339892154eea4e4d96d.tar.bz2
* generic/tkTest.c: fixed incorrect platform inclusion for
TkplatformtestInit (it would never get called). FossilOrigin-Name: 5759f5d009ef08cfadf45d158f7e6ab90fdda7e9
-rw-r--r--generic/tkTest.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tkTest.c b/generic/tkTest.c
index 970f0c0..d64dfcc 100644
--- a/generic/tkTest.c
+++ b/generic/tkTest.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkTest.c,v 1.11 2000/02/10 08:52:36 hobbs Exp $
+ * RCS: @(#) $Id: tkTest.c,v 1.12 2000/04/04 08:09:15 hobbs Exp $
*/
#include "tkInt.h"
@@ -210,11 +210,10 @@ static void TrivialEventProc _ANSI_ARGS_((ClientData clientData,
* External (platform specific) initialization routine:
*/
-extern int TkplatformtestInit _ANSI_ARGS_((
- Tcl_Interp *interp));
+extern int TkplatformtestInit _ANSI_ARGS_((Tcl_Interp *interp));
extern int TclThread_Init _ANSI_ARGS_((Tcl_Interp *interp));
-#if !(defined(__WIN32__) && defined(MAC_TCL))
+#if !(defined(__WIN32__) || defined(MAC_TCL))
#define TkplatformtestInit(x) TCL_OK
#endif