Mercurial > emacs
changeset 56034:161424b0c2f5
(shut_down_emacs): Inhibit redisplay during shutdown.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 11 Jun 2004 21:48:22 +0000 |
parents | 257e4c1b07a1 |
children | e3ace501b5f4 |
files | src/emacs.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Fri Jun 11 21:47:28 2004 +0000 +++ b/src/emacs.c Fri Jun 11 21:48:22 2004 +0000 @@ -206,6 +206,8 @@ extern Lisp_Object Vauto_save_list_file_name; +extern Lisp_Object Vinhibit_redisplay; + #ifdef USG_SHARED_LIBRARIES /* If nonzero, this is the place to put the end of the writable segment at startup. */ @@ -2009,6 +2011,9 @@ /* Prevent running of hooks from now on. */ Vrun_hooks = Qnil; + /* Don't update display from now on. */ + Vinhibit_redisplay = Qt; + /* If we are controlling the terminal, reset terminal modes. */ #ifdef EMACS_HAVE_TTY_PGRP {