summaryrefslogtreecommitdiffstats
path: root/mac/tclMacAppInit.c
diff options
context:
space:
mode:
authorjingham <jingham@noemail.net>1998-11-10 06:49:19 (GMT)
committerjingham <jingham@noemail.net>1998-11-10 06:49:19 (GMT)
commite3c04845583003a0742f88e1723a6bb318e64b83 (patch)
tree426ae9ad4e25e36702e7b3c1ea424748f2fde331 /mac/tclMacAppInit.c
parentbe904d29b99c51d25ad9a0dcb1bfd4596079825c (diff)
downloadtcl-e3c04845583003a0742f88e1723a6bb318e64b83.zip
tcl-e3c04845583003a0742f88e1723a6bb318e64b83.tar.gz
tcl-e3c04845583003a0742f88e1723a6bb318e64b83.tar.bz2
Fixed a bug in the resource command when the file was opened twice. Fixed a bug in the testWriteTextResource command - it wrote one too many bytes. Factored out the common code from the .pch files FspLocationFromPath - make path a CONST
FossilOrigin-Name: 784962bdc874b00d3e1e5b2c6c732347a11b617f
Diffstat (limited to 'mac/tclMacAppInit.c')
-rw-r--r--mac/tclMacAppInit.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/mac/tclMacAppInit.c b/mac/tclMacAppInit.c
index 9e66a20..693470c 100644
--- a/mac/tclMacAppInit.c
+++ b/mac/tclMacAppInit.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: tclMacAppInit.c,v 1.2 1998/09/14 18:40:04 stanton Exp $
+ * RCS: @(#) $Id: tclMacAppInit.c,v 1.3 1998/11/10 06:49:25 jingham Exp $
*/
#include "tcl.h"
@@ -26,6 +26,8 @@ short InstallConsole _ANSI_ARGS_((short fd));
#endif
#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 */
@@ -108,6 +110,11 @@ Tcl_AppInit(
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 */
/*