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
4abca5e7
Commit
4abca5e7
authored
Apr 03, 1996
by
Richard M. Stallman
Browse files
(wait_reading_process_input): Don't call
wait_reading_process_input_1 if time_limit is -1.
parent
b0764b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/process.c
src/process.c
+2
-1
No files found.
src/process.c
View file @
4abca5e7
...
...
@@ -2108,7 +2108,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
timeout_reduced_for_timers
=
1
;
}
}
else
/* If time_limit is -1, we are not going to wait at all. */
else
if
(
time_limit
!=
-
1
)
{
/* This is so a breakpoint can be put here. */
wait_reading_process_input_1
();
...
...
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