From: Eli Zaretskii Date: Thu, 10 Nov 2022 10:12:56 +0000 (+0200) Subject: Avoid dumping core upon SIGHUP in non-interactive sessions X-Git-Tag: emacs-29.0.90~1616^2~216 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25b4cec31d580353995d87fe19ae4dab6e6e37de;p=emacs.git Avoid dumping core upon SIGHUP in non-interactive sessions * src/emacs.c (terminate_due_to_signal): Don't special-case SIGINT. Patch by Paul Eggert . (Bug#58956) --- diff --git a/src/emacs.c b/src/emacs.c index 1b2aa9442b7..c4c8bfc82fb 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -432,9 +432,9 @@ terminate_due_to_signal (int sig, int backtrace_limit) if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT) { /* Avoid abort in shut_down_emacs if we were interrupted - by SIGINT in noninteractive usage, as in that case we - don't care about the message stack. */ - if (sig == SIGINT && noninteractive) + in noninteractive usage, as in that case we don't + care about the message stack. */ + if (noninteractive) clear_message_stack (); Fkill_emacs (make_fixnum (sig), Qnil); }