comparison 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
comparison
equal deleted inserted replaced
25355:e25e953cfc58 25356:5db69f7aadca
2579 2579
2580 /* Make C-g and alarm signals set flags again */ 2580 /* Make C-g and alarm signals set flags again */
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. */
2588 break; 2588 break;
2589 if (nfds < 0) 2589 if (nfds < 0)
2703 got_some_input |= nfds > 0; 2703 got_some_input |= nfds > 0;
2704 2704
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,
2712 but this is safer in the short run. */ 2712 but this is safer in the short run. */
2713 for (channel = 0; channel <= max_process_desc; channel++) 2713 for (channel = 0; channel <= max_process_desc; channel++)
4879 4879
4880 /* Make C-g and alarm signals set flags again */ 4880 /* Make C-g and alarm signals set flags again */
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. */
4888 break; 4888 break;
4889 4889