Commit c7315511 authored by Guido van Rossum's avatar Guido van Rossum

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

parent 84d2d20b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment