comparison src/emacs.c @ 83159:38500c0c86ab

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-398 Tweak permissions * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-399 Tweak directory permissions * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-400 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-401 More build-in-place tweaking of arch tagging * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-402 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-403 Yet more build-in-place tweaking of arch tagging * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-404 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-405 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-406 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-407 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-199
author Karoly Lorentey <lorentey@elte.hu>
date Mon, 14 Jun 2004 20:00:54 +0000
parents 50b9a96c837c 161424b0c2f5
children 8e4ea1e2c254
comparison
equal deleted inserted replaced
83158:f948c9fd910c 83159:38500c0c86ab
204 #ifdef HAVE_WINDOW_SYSTEM 204 #ifdef HAVE_WINDOW_SYSTEM
205 extern Lisp_Object Vinitial_window_system; 205 extern Lisp_Object Vinitial_window_system;
206 #endif /* HAVE_WINDOW_SYSTEM */ 206 #endif /* HAVE_WINDOW_SYSTEM */
207 207
208 extern Lisp_Object Vauto_save_list_file_name; 208 extern Lisp_Object Vauto_save_list_file_name;
209
210 extern Lisp_Object Vinhibit_redisplay;
209 211
210 #ifdef USG_SHARED_LIBRARIES 212 #ifdef USG_SHARED_LIBRARIES
211 /* If nonzero, this is the place to put the end of the writable segment 213 /* If nonzero, this is the place to put the end of the writable segment
212 at startup. */ 214 at startup. */
213 215
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