Yes, Virginia, Tix does have a Tix_SafeInit() function.

This commit is contained in:
Guido van Rossum 1997-12-02 20:38:38 +00:00
parent b447d118ff
commit f259a8e5c3
1 changed files with 5 additions and 5 deletions

View File

@ -58,11 +58,11 @@ Tcl_AppInit(interp)
#endif #endif
#ifdef WITH_TIX #ifdef WITH_TIX
{ {
extern int Tix_Init(Tcl_Interp *); extern int Tix_Init(Tcl_Interp *interp);
/* XXX Is there no Tix_SafeInit? */ extern int Tix_SafeInit(Tcl_Interp *interp);
Tcl_StaticPackage(NULL, "Tix", Tix_Init, NULL); Tcl_StaticPackage(NULL, "Tix", Tix_Init, Tix_SafeInit);
} }
#endif #endif
#ifdef WITH_BLT #ifdef WITH_BLT