summaryrefslogtreecommitdiffstats
path: root/games/awele/files/patch-tkAppInit.c
blob: f2050064b31d4a5f01467f859890afc033a11863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--- tkAppInit.c.orig	Fri Dec  8 16:35:38 1995
+++ tkAppInit.c	Thu Mar 15 08:44:13 2007
@@ -9,12 +9,10 @@
  *
  * See the file "license.terms" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+ *
+ * SCCS: @(#) tkAppInit.c 1.22 96/05/29 09:47:08
  */
 
-#ifndef lint
-static char sccsid[] = "@(#) tkAppInit.c 1.15 95/06/28 13:14:28";
-#endif /* not lint */
-
 #include "tk.h"
 
 extern void create_commands(Tcl_Interp *,Tk_Window);
@@ -25,9 +23,7 @@
  * Sun shared libraries to be used for Tcl.
  */
 
-extern int matherr();
-int *tclDummyMathPtr = (int *) matherr;
-
+
 /*
  *----------------------------------------------------------------------
  *
@@ -77,14 +73,13 @@
 Tcl_AppInit(interp)
     Tcl_Interp *interp;		/* Interpreter for application. */
 {
-    Tk_Window main;
-
     if (Tcl_Init(interp) == TCL_ERROR) {
 	return TCL_ERROR;
     }
     if (Tk_Init(interp) == TCL_ERROR) {
 	return TCL_ERROR;
     }
+    Tcl_StaticPackage(interp, "Tk", Tk_Init, Tk_SafeInit);
 
     /*
      * Call the init procedures for included packages.  Each call should
@@ -110,10 +105,7 @@
      * where "app" is the name of the application.  If this line is deleted
      * then no user-specific startup file will be run under any conditions.
      */
-#ifdef DEFAULT_TCL_SCRIPT
-    tcl_RcFileName = DEFAULT_TCL_SCRIPT ;
-#else
-    tcl_RcFileName = "~/.wishrc";
-#endif
+
+    Tcl_SetVar(interp, "tcl_rcFileName", "~/.wishrc", TCL_GLOBAL_ONLY);
     return TCL_OK;
 }
OpenPOWER on IntegriCloud