diff options
| author | Romain Francoise | 2005-10-09 16:53:35 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-10-09 16:53:35 +0000 |
| commit | 41791a20d7136db79a0b44a281b65216de35a4cf (patch) | |
| tree | 944885d2ed06b0bcb4580362e28eef5798aaa364 /src/window.c | |
| parent | 74ab0905032874f203a43dbc93a6df5e8a2fc136 (diff) | |
| download | emacs-41791a20d7136db79a0b44a281b65216de35a4cf.tar.gz emacs-41791a20d7136db79a0b44a281b65216de35a4cf.zip | |
(Fwindow_end): Don't try to redisplay if non-interactive.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 3e9354a7ba8..9ef4fc2eacd 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1029,7 +1029,8 @@ if it isn't already recorded. */) | |||
| 1029 | 1029 | ||
| 1030 | if (! NILP (update) | 1030 | if (! NILP (update) |
| 1031 | && ! (! NILP (w->window_end_valid) | 1031 | && ! (! NILP (w->window_end_valid) |
| 1032 | && XFASTINT (w->last_modified) >= MODIFF)) | 1032 | && XFASTINT (w->last_modified) >= MODIFF) |
| 1033 | && !noninteractive) | ||
| 1033 | { | 1034 | { |
| 1034 | struct text_pos startp; | 1035 | struct text_pos startp; |
| 1035 | struct it it; | 1036 | struct it it; |