2000-08-08 02:51:55 +00:00
|
|
|
--- main.c.orig Mon May 22 13:25:21 2000
|
|
|
|
+++ main.c Sun Aug 6 21:01:42 2000
|
|
|
|
@@ -33,6 +33,8 @@
|
1998-10-19 14:42:14 +00:00
|
|
|
#include <gnome.h>
|
2000-08-08 02:51:55 +00:00
|
|
|
#include <libgnomeui/gnome-window-icon.h>
|
1998-10-19 14:42:14 +00:00
|
|
|
|
|
|
|
+#include <floatingpoint.h>
|
|
|
|
+
|
1999-01-01 06:44:36 +00:00
|
|
|
#include <glibtop/close.h>
|
1998-10-19 14:42:14 +00:00
|
|
|
|
2000-02-18 02:15:24 +00:00
|
|
|
#include <locale.h>
|
2000-08-08 02:51:55 +00:00
|
|
|
@@ -206,6 +208,8 @@
|
1999-01-01 06:44:36 +00:00
|
|
|
poptContext ctx;
|
2000-02-18 02:15:24 +00:00
|
|
|
const char **args;
|
1998-10-19 14:42:14 +00:00
|
|
|
|
1999-01-01 06:44:36 +00:00
|
|
|
+ fpsetmask (fpgetmask() & ~(FP_X_DZ|FP_X_INV));
|
2000-02-18 02:15:24 +00:00
|
|
|
+
|
|
|
|
setlocale (LC_ALL, "");
|
1998-10-19 14:42:14 +00:00
|
|
|
bindtextdomain (PACKAGE, GNOMELOCALEDIR);
|
1999-01-01 06:44:36 +00:00
|
|
|
textdomain (PACKAGE);
|
2000-08-08 02:51:55 +00:00
|
|
|
@@ -295,6 +299,11 @@
|
2000-02-18 02:15:24 +00:00
|
|
|
gtop_properties.global.show_toolbar);
|
|
|
|
gnome_config_sync ();
|
|
|
|
}
|
1999-01-01 06:44:36 +00:00
|
|
|
+
|
2000-08-08 02:51:55 +00:00
|
|
|
+#ifndef __alpha__
|
1999-01-01 06:44:36 +00:00
|
|
|
+ fpresetsticky (FP_X_DZ|FP_X_INV);
|
2000-08-08 02:51:55 +00:00
|
|
|
+#endif
|
1999-01-01 06:44:36 +00:00
|
|
|
+ fpsetmask (FP_X_DZ|FP_X_INV);
|
2000-02-18 02:15:24 +00:00
|
|
|
|
1998-10-19 14:42:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|