comparison src/xdisp.c @ 14682:d5e14cf7a990

(redisplay_window): Pass preserve_echo_area as a missing second argument of redisplay_windows.
author Richard M. Stallman <rms@gnu.org>
date Mon, 26 Feb 1996 04:39:49 +0000
parents 9e8607589f03
children 21d5ceaa4d23
comparison
equal deleted inserted replaced
14681:27bbf45f3393 14682:d5e14cf7a990
1417 1417
1418 /* If this is a combination window, do its children; that's all. */ 1418 /* If this is a combination window, do its children; that's all. */
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))
1431 abort (); 1431 abort ();
1432 1432