Mercurial > emacs
changeset 1000:67bfadf24043
* alloc.c (Fmake_marker): Removed the test for being called from a
signal handler. The original bug is probably gone, the test
wasn't written portably, and it should probably go somewhere else
anyway - say, funcall or eval.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 19 Aug 1992 06:18:07 +0000 |
parents | d8d503897aa5 |
children | c1ebe69206df |
files | src/alloc.c |
diffstat | 1 files changed, 0 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alloc.c Wed Aug 19 03:54:51 1992 +0000 +++ b/src/alloc.c Wed Aug 19 06:18:07 1992 +0000 @@ -552,13 +552,6 @@ register Lisp_Object val; register struct Lisp_Marker *p; - /* Detact the bug that seems to have caused this to be called from - a signal handler. */ - SIGMASKTYPE mask; - mask = sigblock (SIGEMPTYMASK); - if (mask != 0) - abort (); - if (marker_free_list) { XSET (val, Lisp_Marker, marker_free_list);