Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
97f3b3d6
Commit
97f3b3d6
authored
Jul 09, 1993
by
Richard M. Stallman
Browse files
(wait_reading_process_input): If wait_for_cell, do call
swallow_events and do_pending_window_change when appropriate.
parent
dba3adb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/process.c
src/process.c
+3
-2
No files found.
src/process.c
View file @
97f3b3d6
...
...
@@ -1880,7 +1880,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
/* If there is any, return immediately
to give it higher priority than subprocesses */
if
(
XINT
(
read_kbd
)
&&
detect_input_pending
())
if
((
XINT
(
read_kbd
)
||
wait_for_cell
)
&&
detect_input_pending
())
{
swallow_events
();
if
(
detect_input_pending
())
...
...
@@ -1906,7 +1907,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
/* If checking input just got us a size-change event from X,
obey it now if we should. */
if
(
XINT
(
read_kbd
))
if
(
XINT
(
read_kbd
)
||
wait_for_cell
)
do_pending_window_change
();
/* Check for data from a process or a command channel */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment