From f259a8e5c339f73fff8c1f2383079e967120efbd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 2 Dec 1997 20:38:38 +0000 Subject: Yes, Virginia, Tix does have a Tix_SafeInit() function. --- Modules/tkappinit.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Modules/tkappinit.c b/Modules/tkappinit.c index 56556c7..392269b 100644 --- a/Modules/tkappinit.c +++ b/Modules/tkappinit.c @@ -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 -- cgit v0.12