]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid dumping core upon SIGHUP in non-interactive sessions
authorEli Zaretskii <eliz@gnu.org>
Thu, 10 Nov 2022 10:12:56 +0000 (12:12 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 10 Nov 2022 10:12:56 +0000 (12:12 +0200)
* src/emacs.c (terminate_due_to_signal): Don't special-case
SIGINT.  Patch by Paul Eggert <eggert@cs.ucla.edu>.  (Bug#58956)

src/emacs.c

index 1b2aa9442b78e9d98ceca56c727c3da56f72fc8e..c4c8bfc82fbb119fcd5897a67ae2dd33ab92d021 100644 (file)
@@ -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);
            }