From: Romain Francoise Date: Sun, 9 Oct 2005 16:53:35 +0000 (+0000) Subject: (Fwindow_end): Don't try to redisplay if non-interactive. X-Git-Tag: emacs-pretest-22.0.90~6721 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=41791a20d7136db79a0b44a281b65216de35a4cf;p=emacs.git (Fwindow_end): Don't try to redisplay if non-interactive. --- diff --git a/src/ChangeLog b/src/ChangeLog index d9b2eb7ab3c..693ddb3bf57 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,10 @@ +2005-10-09 Romain Francoise + + * window.c (Fwindow_end): Don't try to redisplay if non-interactive. + 2005-10-09 Jan Dj,Ad(Brv - * emacs.c (standard_args): Removed options -i, -itype, --icon-type, + * emacs.c (standard_args): Removed options -i, -itype, --icon-type, added -nb, --no-bitmap-icon. * xfns.c (Fx_create_frame): Make bitmapIcon have default on. diff --git a/src/window.c b/src/window.c index 3e9354a7ba8..9ef4fc2eacd 100644 --- a/src/window.c +++ b/src/window.c @@ -1029,7 +1029,8 @@ if it isn't already recorded. */) if (! NILP (update) && ! (! NILP (w->window_end_valid) - && XFASTINT (w->last_modified) >= MODIFF)) + && XFASTINT (w->last_modified) >= MODIFF) + && !noninteractive) { struct text_pos startp; struct it it;