Mercurial > emacs
comparison src/emacs.c @ 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 | a5ccd5ee3c52 |
children | 69f225b794b1 38500c0c86ab 4c90ffeb71c5 |
comparison
equal
deleted
inserted
replaced
56033:257e4c1b07a1 | 56034:161424b0c2f5 |
---|---|
203 #ifdef HAVE_WINDOW_SYSTEM | 203 #ifdef HAVE_WINDOW_SYSTEM |
204 extern Lisp_Object Vwindow_system; | 204 extern Lisp_Object Vwindow_system; |
205 #endif /* HAVE_WINDOW_SYSTEM */ | 205 #endif /* HAVE_WINDOW_SYSTEM */ |
206 | 206 |
207 extern Lisp_Object Vauto_save_list_file_name; | 207 extern Lisp_Object Vauto_save_list_file_name; |
208 | |
209 extern Lisp_Object Vinhibit_redisplay; | |
208 | 210 |
209 #ifdef USG_SHARED_LIBRARIES | 211 #ifdef USG_SHARED_LIBRARIES |
210 /* If nonzero, this is the place to put the end of the writable segment | 212 /* If nonzero, this is the place to put the end of the writable segment |
211 at startup. */ | 213 at startup. */ |
212 | 214 |
2007 Lisp_Object stuff; | 2009 Lisp_Object stuff; |
2008 { | 2010 { |
2009 /* Prevent running of hooks from now on. */ | 2011 /* Prevent running of hooks from now on. */ |
2010 Vrun_hooks = Qnil; | 2012 Vrun_hooks = Qnil; |
2011 | 2013 |
2014 /* Don't update display from now on. */ | |
2015 Vinhibit_redisplay = Qt; | |
2016 | |
2012 /* If we are controlling the terminal, reset terminal modes. */ | 2017 /* If we are controlling the terminal, reset terminal modes. */ |
2013 #ifdef EMACS_HAVE_TTY_PGRP | 2018 #ifdef EMACS_HAVE_TTY_PGRP |
2014 { | 2019 { |
2015 int pgrp = EMACS_GETPGRP (0); | 2020 int pgrp = EMACS_GETPGRP (0); |
2016 | 2021 |