Mercurial > emacs
diff src/process.c @ 25356:5db69f7aadca
Call change_frame_size and do_pending_window_change with
new parameter.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Sat, 21 Aug 1999 19:30:35 +0000 |
| parents | ccf83ed7326a |
| children | a14111a2a100 |
line wrap: on
line diff
--- a/src/process.c Sat Aug 21 19:30:21 1999 +0000 +++ b/src/process.c Sat Aug 21 19:30:35 1999 +0000 @@ -2581,7 +2581,7 @@ clear_waiting_for_input (); /* If we woke up due to SIGWINCH, actually change size now. */ - do_pending_window_change (); + do_pending_window_change (0); if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) /* We wanted the full specified time, so return now. */ @@ -2705,7 +2705,7 @@ /* If checking input just got us a size-change event from X, obey it now if we should. */ if (XINT (read_kbd) || wait_for_cell) - do_pending_window_change (); + do_pending_window_change (0); /* Check for data from a process. */ /* Really FIRST_PROC_DESC should be 0 on Unix, @@ -4881,7 +4881,7 @@ clear_waiting_for_input (); /* If we woke up due to SIGWINCH, actually change size now. */ - do_pending_window_change (); + do_pending_window_change (0); if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) /* We waited the full specified time, so return now. */
