# HG changeset patch # User Romain Francoise # Date 1128876815 0 # Node ID 543b18532c5185e121e50dd3fbe2d483e003fd51 # Parent 0900c0c906d74d0a7643efe674754f9f4e61f4b0 (Fwindow_end): Don't try to redisplay if non-interactive. diff -r 0900c0c906d7 -r 543b18532c51 src/ChangeLog --- 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 + + * 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 -r 0900c0c906d7 -r 543b18532c51 src/window.c --- 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;