summaryrefslogtreecommitdiff
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
committerJim Blandy <jimb@redhat.com>1992-05-01 06:20:46 +0000
commit32676c085ce177af1e1e8ab61360c68772450af0 (patch)
tree6c8e9d6bc310b894409ae82fe957d1cd518c8e4d /src/floatfns.c
parentd9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff)
downloademacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz
*** empty log message ***
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index ed94c9ebafe..c99ba487e71 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -509,7 +509,11 @@ float_error (signo)
#ifdef BSD4_1
sigrelse (SIGILL);
#else /* not BSD4_1 */
- sigsetmask (0);
+ {
+ int dummy;
+
+ EMACS_SIGSETMASK (0, dummy);
+ }
#endif /* not BSD4_1 */
#else
/* Must reestablish handler each time it is called. */