]> code.delx.au - gnu-emacs/commitdiff
(Fwindow_end): Don't try to redisplay if non-interactive.
authorRomain Francoise <romain@orebokech.com>
Sun, 9 Oct 2005 16:53:35 +0000 (16:53 +0000)
committerRomain Francoise <romain@orebokech.com>
Sun, 9 Oct 2005 16:53:35 +0000 (16:53 +0000)
src/ChangeLog
src/window.c

index d9b2eb7ab3c315a65be551f89f39f166e6d97a34..693ddb3bf57fb7469e965e1546a421072b53944b 100644 (file)
@@ -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\e,Ad\e(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.
index 3e9354a7ba8e3c1cdaff5ff8b0b77c790cbb0611..9ef4fc2eacdace8b9b0aba855c495547f5156401 100644 (file)
@@ -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;