aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 3f40ea47e50..b4637970dd7 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -551,8 +551,9 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
551 register struct Lisp_Marker *p; 551 register struct Lisp_Marker *p;
552 /* Detact the bug that seems to have caused this to be called from 552 /* Detact the bug that seems to have caused this to be called from
553 a signal handler. */ 553 a signal handler. */
554 int mask = sigsetmask (-1); 554 int mask, dummy;
555 sigsetmask (mask); 555 EMACS_SIGSETMASK (-1, mask);
556 EMACS_SIGSETMASK (mask, dummy);
556 if (mask != 0) 557 if (mask != 0)
557 abort (); 558 abort ();
558 559