From 25b4cec31d580353995d87fe19ae4dab6e6e37de Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 10 Nov 2022 12:12:56 +0200 Subject: [PATCH] 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) --- src/emacs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.39.5