changeset 65950:543b18532c51

(Fwindow_end): Don't try to redisplay if non-interactive.
author Romain Francoise <romain@orebokech.com>
date Sun, 09 Oct 2005 16:53:35 +0000
parents 0900c0c906d7
children 9d2d6d11ad55
files src/ChangeLog src/window.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Oct 09 15:49:52 2005 +0000
+++ b/src/ChangeLog	Sun Oct 09 16:53:35 2005 +0000
@@ -1,6 +1,10 @@
+2005-10-09  Romain Francoise  <romain@orebokech.com>
+
+	* window.c (Fwindow_end): Don't try to redisplay if non-interactive.
+
 2005-10-09  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>
 
-	* 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.
--- a/src/window.c	Sun Oct 09 15:49:52 2005 +0000
+++ b/src/window.c	Sun Oct 09 16:53:35 2005 +0000
@@ -1029,7 +1029,8 @@
 
   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;