aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-08-30 13:36:24 +0000
committerGerd Moellmann2001-08-30 13:36:24 +0000
commit200f868eb31d872ee793f9e7e01cd7a710f42cfd (patch)
tree5e6a66b8921e07c3dd5e3d95e7cc27e7f414fe6b /src
parentcd8d41681b74f3876e6ad24d0d6e8c47c71671e3 (diff)
downloademacs-200f868eb31d872ee793f9e7e01cd7a710f42cfd.tar.gz
emacs-200f868eb31d872ee793f9e7e01cd7a710f42cfd.zip
(shut_down_emacs): Fix last change.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c2
1 files changed, 1 insertions, 1 deletions
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)
1914 1914
1915 /* Do this only if terminating normally, we want glyph matrices 1915 /* Do this only if terminating normally, we want glyph matrices
1916 etc. in a core dump. */ 1916 etc. in a core dump. */
1917 if (sig && sig != SIGTERM) 1917 if (sig == 0 || sig == SIGTERM)
1918 { 1918 {
1919 check_glyph_memory (); 1919 check_glyph_memory ();
1920 check_message_stack (); 1920 check_message_stack ();