diff options
| author | Gerd Moellmann | 1999-08-21 19:30:35 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-21 19:30:35 +0000 |
| commit | 2b6538062cc74db6e18f6dce36721b93d3d32924 (patch) | |
| tree | 9eff08051a410f9e18106693f5d4aa52a1d7f86f /src/process.c | |
| parent | 0788646cc2f1b65a6aabf8a2a9b0fa3488e0f560 (diff) | |
| download | emacs-2b6538062cc74db6e18f6dce36721b93d3d32924.tar.gz emacs-2b6538062cc74db6e18f6dce36721b93d3d32924.zip | |
Call change_frame_size and do_pending_window_change with
new parameter.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c index b4eaa9ca28f..d3f54fd5e0a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2581,7 +2581,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 2581 | clear_waiting_for_input (); | 2581 | clear_waiting_for_input (); |
| 2582 | 2582 | ||
| 2583 | /* If we woke up due to SIGWINCH, actually change size now. */ | 2583 | /* If we woke up due to SIGWINCH, actually change size now. */ |
| 2584 | do_pending_window_change (); | 2584 | do_pending_window_change (0); |
| 2585 | 2585 | ||
| 2586 | if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) | 2586 | if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
| 2587 | /* We wanted the full specified time, so return now. */ | 2587 | /* We wanted the full specified time, so return now. */ |
| @@ -2705,7 +2705,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 2705 | /* If checking input just got us a size-change event from X, | 2705 | /* If checking input just got us a size-change event from X, |
| 2706 | obey it now if we should. */ | 2706 | obey it now if we should. */ |
| 2707 | if (XINT (read_kbd) || wait_for_cell) | 2707 | if (XINT (read_kbd) || wait_for_cell) |
| 2708 | do_pending_window_change (); | 2708 | do_pending_window_change (0); |
| 2709 | 2709 | ||
| 2710 | /* Check for data from a process. */ | 2710 | /* Check for data from a process. */ |
| 2711 | /* Really FIRST_PROC_DESC should be 0 on Unix, | 2711 | /* Really FIRST_PROC_DESC should be 0 on Unix, |
| @@ -4881,7 +4881,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 4881 | clear_waiting_for_input (); | 4881 | clear_waiting_for_input (); |
| 4882 | 4882 | ||
| 4883 | /* If we woke up due to SIGWINCH, actually change size now. */ | 4883 | /* If we woke up due to SIGWINCH, actually change size now. */ |
| 4884 | do_pending_window_change (); | 4884 | do_pending_window_change (0); |
| 4885 | 4885 | ||
| 4886 | if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) | 4886 | if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) |
| 4887 | /* We waited the full specified time, so return now. */ | 4887 | /* We waited the full specified time, so return now. */ |