From: Gerd Moellmann Date: Wed, 29 Nov 2000 12:21:15 +0000 (+0000) Subject: (Fsignal): Reset handling_signal. X-Git-Tag: emacs-pretest-21.0.93~388 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=346598f1e5a3a76cffa6e31e049a83f9b6edcbe0;p=emacs.git (Fsignal): Reset handling_signal. --- diff --git a/etc/NEWS b/etc/NEWS index 4d7a45bf0f8..6ef617ad45b 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -42,7 +42,7 @@ lacks unexec, asynchronous processes, and networking support. * Changes in Emacs 21.1 ** The new command M-x delete-trailing-whitespace RET will delete the -traling whitespace within the current restriction. You can also add +trailing whitespace within the current restriction. You can also add this function to `write-file-hooks' or `local-write-file-hooks'. ** When visiting a file with M-x find-file-literally, no newlines will diff --git a/src/ChangeLog b/src/ChangeLog index 4cb63cb61a6..0126808493a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-11-29 Gerd Moellmann + + * eval.c (Fsignal): Reset handling_signal. + 2000-11-28 Jason Rumney * w32menu.c (add_menu_item): Reset menu item text when changing @@ -5,7 +9,7 @@ 2000-11-28 Gerd Moellmann - * xselect.c (wait_for_property_change): Update copyright. + * xselect.c: Update copyright. * window.c (coordinates_in_window): If on a mode or header line, but sufficiently close to its start, return ``on vertical diff --git a/src/eval.c b/src/eval.c index f42ebc6979b..54ca9eb24b1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1349,7 +1349,7 @@ See also the function `condition-case'.") extern int display_busy_cursor_p; struct backtrace *bp; - immediate_quit = 0; + immediate_quit = handling_signal = 0; if (gc_in_progress || waiting_for_input) abort ();