From 200f868eb31d872ee793f9e7e01cd7a710f42cfd Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 30 Aug 2001 13:36:24 +0000 Subject: [PATCH] (shut_down_emacs): Fix last change. --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emacs.c b/src/emacs.c index 47beb426a15..924eeee8cf9 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1914,7 +1914,7 @@ shut_down_emacs (sig, no_x, stuff) /* Do this only if terminating normally, we want glyph matrices etc. in a core dump. */ - if (sig && sig != SIGTERM) + if (sig == 0 || sig == SIGTERM) { check_glyph_memory (); check_message_stack (); -- 2.39.5