diff options
| author | Richard M. Stallman | 1996-02-26 04:39:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-26 04:39:49 +0000 |
| commit | f9c467a3be44fc2577ff11f2657253368cecefb5 (patch) | |
| tree | e991a9b4576268ce230c2a39b83efe84837151e9 /src | |
| parent | 972a769bb9350ef7fc9d304c70b3081b2de5e1ca (diff) | |
| download | emacs-f9c467a3be44fc2577ff11f2657253368cecefb5.tar.gz emacs-f9c467a3be44fc2577ff11f2657253368cecefb5.zip | |
(redisplay_window): Pass preserve_echo_area as a missing
second argument of redisplay_windows.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index b1a6e35ccbd..69cb8d79806 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -1419,12 +1419,12 @@ redisplay_window (window, just_this_one, preserve_echo_area) | |||
| 1419 | 1419 | ||
| 1420 | if (!NILP (w->vchild)) | 1420 | if (!NILP (w->vchild)) |
| 1421 | { | 1421 | { |
| 1422 | redisplay_windows (w->vchild); | 1422 | redisplay_windows (w->vchild, preserve_echo_area); |
| 1423 | return; | 1423 | return; |
| 1424 | } | 1424 | } |
| 1425 | if (!NILP (w->hchild)) | 1425 | if (!NILP (w->hchild)) |
| 1426 | { | 1426 | { |
| 1427 | redisplay_windows (w->hchild); | 1427 | redisplay_windows (w->hchild, preserve_echo_area); |
| 1428 | return; | 1428 | return; |
| 1429 | } | 1429 | } |
| 1430 | if (NILP (w->buffer)) | 1430 | if (NILP (w->buffer)) |