--- main.c.orig Mon May 22 13:25:21 2000 +++ main.c Sun Aug 6 21:01:42 2000 @@ -33,6 +33,8 @@ #include #include +#include + #include #include @@ -206,6 +208,8 @@ poptContext ctx; const char **args; + fpsetmask (fpgetmask() & ~(FP_X_DZ|FP_X_INV)); + setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, GNOMELOCALEDIR); textdomain (PACKAGE); @@ -295,6 +299,11 @@ gtop_properties.global.show_toolbar); gnome_config_sync (); } + +#ifndef __alpha__ + fpresetsticky (FP_X_DZ|FP_X_INV); +#endif + fpsetmask (FP_X_DZ|FP_X_INV); return 0; }