diff src/window.c @ 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 454a4a463081
children a234d371d212
line wrap: on
line diff
--- 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;