Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9db03f6c
Commit
9db03f6c
authored
Jun 11, 2004
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(shut_down_emacs): Inhibit redisplay during shutdown.
parent
1da71023
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/emacs.c
src/emacs.c
+5
-0
No files found.
src/emacs.c
View file @
9db03f6c
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment