aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJim Blandy1992-05-01 06:20:46 +0000
committerJim Blandy1992-05-01 06:20:46 +0000
commit32676c085ce177af1e1e8ab61360c68772450af0 (patch)
tree6c8e9d6bc310b894409ae82fe957d1cd518c8e4d /src/alloc.c
parentd9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff)
downloademacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz
emacs-32676c085ce177af1e1e8ab61360c68772450af0.zip
*** empty log message ***
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