diff options
author | das <das> | 2002-10-18 03:01:33 (GMT) |
---|---|---|
committer | das <das> | 2002-10-18 03:01:33 (GMT) |
commit | 985c5ce727f1a2e8d7e168c4891eefe2247eaade (patch) | |
tree | 6effa79cafa3cdfd915ee28808c6facc2166e4c5 /mac | |
parent | d03bc5c12d63cd1b014ffe6dcb23bb242b65e453 (diff) | |
download | tk-985c5ce727f1a2e8d7e168c4891eefe2247eaade.zip tk-985c5ce727f1a2e8d7e168c4891eefe2247eaade.tar.gz tk-985c5ce727f1a2e8d7e168c4891eefe2247eaade.tar.bz2 |
* mac/tkMacAppInit.c: removed tcltest dependency.
[Bug #592639] (porter)
Diffstat (limited to 'mac')
-rw-r--r-- | mac/tkMacAppInit.c | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/mac/tkMacAppInit.c b/mac/tkMacAppInit.c index 50f6156..abbe279 100644 --- a/mac/tkMacAppInit.c +++ b/mac/tkMacAppInit.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacAppInit.c,v 1.14 2002/04/08 09:04:34 das Exp $ + * RCS: @(#) $Id: tkMacAppInit.c,v 1.15 2002/10/18 03:01:33 das Exp $ */ #include <Gestalt.h> @@ -31,13 +31,6 @@ extern int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp)); #endif /* TK_TEST */ -#ifdef TCL_TEST -extern int Procbodytest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -extern int Procbodytest_SafeInit _ANSI_ARGS_((Tcl_Interp *interp)); -extern int TclObjTest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -#endif /* TCL_TEST */ - Tcl_Interp *gStdoutInterp = NULL; int TkMacConvertEvent _ANSI_ARGS_((EventRecord *eventPtr)); @@ -152,22 +145,6 @@ Tcl_AppInit( * where "Mod" is the name of the module. */ -#ifdef TCL_TEST - if (Tcltest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "Tcltest", Tcltest_Init, - (Tcl_PackageInitProc *) NULL); - if (TclObjTest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - if (Procbodytest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "procbodytest", Procbodytest_Init, - Procbodytest_SafeInit); -#endif /* TCL_TEST */ - #ifdef TK_TEST if (Tktest_Init(interp) == TCL_ERROR) { return TCL_ERROR; |