From 41791a20d7136db79a0b44a281b65216de35a4cf Mon Sep 17 00:00:00 2001 From: Romain Francoise Date: Sun, 9 Oct 2005 16:53:35 +0000 Subject: [PATCH] (Fwindow_end): Don't try to redisplay if non-interactive. --- src/ChangeLog | 6 +++++- src/window.c | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index d9b2eb7ab3..693ddb3bf5 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 3e9354a7ba..9ef4fc2eac 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; -- 2.39.2