mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 04:30:45 -08:00
(shut_down_emacs): Inhibit redisplay during shutdown.
This commit is contained in:
parent
1da71023cf
commit
9db03f6c4c
1 changed files with 5 additions and 0 deletions
|
|
@ -206,6 +206,8 @@ extern Lisp_Object Vwindow_system;
|
|||
|
||||
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 @@ shut_down_emacs (sig, no_x, stuff)
|
|||
/* 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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue