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
#ifdef WITH_TIX
{
extern int Tix_Init(Tcl_Interp *);
/* XXX Is there no Tix_SafeInit? */
Tcl_StaticPackage(NULL, "Tix", Tix_Init, NULL);
}
{
extern int Tix_Init(Tcl_Interp *interp);
extern int Tix_SafeInit(Tcl_Interp *interp);
Tcl_StaticPackage(NULL, "Tix", Tix_Init, Tix_SafeInit);
}
#endif
#ifdef WITH_BLT