summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-04-04 08:09:15 (GMT)
committerhobbs <hobbs>2000-04-04 08:09:15 (GMT)
commit2a86dab1b1bc617709095cbcb64a0caff3ccf2d5 (patch)
tree081f4f92508c55c2111c3f453a4e311bdcb132d5
parentd50fbf57cebb9745bb627fceaf92c35e102f9bb6 (diff)
downloadtk-2a86dab1b1bc617709095cbcb64a0caff3ccf2d5.zip
tk-2a86dab1b1bc617709095cbcb64a0caff3ccf2d5.tar.gz
tk-2a86dab1b1bc617709095cbcb64a0caff3ccf2d5.tar.bz2
* generic/tkTest.c: fixed incorrect platform inclusion for
TkplatformtestInit (it would never get called).
-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