aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorJim Blandy1992-07-13 20:53:59 +0000
committerJim Blandy1992-07-13 20:53:59 +0000
commitff11dfa15b3b56559bac0d5c6b0a26a80d2d5f6d (patch)
tree1d3957068bbd0a226e1bf934d04b099b2c0d15b8 /src/process.c
parent502b9b6441d9c3ce0fdc5f671447f30f11fb5afb (diff)
downloademacs-ff11dfa15b3b56559bac0d5c6b0a26a80d2d5f6d.tar.gz
emacs-ff11dfa15b3b56559bac0d5c6b0a26a80d2d5f6d.zip
*** empty log message ***
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c
index 2265c2c34db..e950a7b4395 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1723,11 +1723,11 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
1723 if (! XINT (read_kbd)) 1723 if (! XINT (read_kbd))
1724 FD_CLR (0, &Available); 1724 FD_CLR (0, &Available);
1725 1725
1726 /* If screen size has changed or the window is newly mapped, 1726 /* If frame size has changed or the window is newly mapped,
1727 redisplay now, before we start to wait. There is a race 1727 redisplay now, before we start to wait. There is a race
1728 condition here; if a SIGIO arrives between now and the select 1728 condition here; if a SIGIO arrives between now and the select
1729 and indicates that a screen is trashed, we lose. */ 1729 and indicates that a frame is trashed, we lose. */
1730 if (screen_garbaged) 1730 if (frame_garbaged)
1731 redisplay_preserve_echo_area (); 1731 redisplay_preserve_echo_area ();
1732 1732
1733 if (XINT (read_kbd) && detect_input_pending ()) 1733 if (XINT (read_kbd) && detect_input_pending ())
@@ -2898,7 +2898,7 @@ effect when `start-process' is called.");
2898#include "systime.h" 2898#include "systime.h"
2899#include "termopts.h" 2899#include "termopts.h"
2900 2900
2901extern int screen_garbaged; 2901extern int frame_garbaged;
2902 2902
2903 2903
2904/* As described above, except assuming that there are no subprocesses: 2904/* As described above, except assuming that there are no subprocesses:
@@ -2981,9 +2981,9 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
2981 if (XINT (read_kbd) < 0) 2981 if (XINT (read_kbd) < 0)
2982 set_waiting_for_input (&timeout); 2982 set_waiting_for_input (&timeout);
2983 2983
2984 /* If a screen has been newly mapped and needs updating, 2984 /* If a frame has been newly mapped and needs updating,
2985 reprocess its display stuff. */ 2985 reprocess its display stuff. */
2986 if (screen_garbaged) 2986 if (frame_garbaged)
2987 redisplay_preserve_echo_area (); 2987 redisplay_preserve_echo_area ();
2988 2988
2989 if (XINT (read_kbd) && detect_input_pending ()) 2989 if (XINT (read_kbd) && detect_input_pending ())