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
5de50bfb
Commit
5de50bfb
authored
Mar 08, 1996
by
Richard M. Stallman
Browse files
(wait_reading_process_input):
Redisplay after timer_check if timers were actually run.
parent
bcd46245
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/process.c
src/process.c
+4
-0
No files found.
src/process.c
View file @
5de50bfb
...
...
@@ -251,6 +251,7 @@ int proc_buffered_char[MAXDESC];
static
Lisp_Object
get_process
();
extern
EMACS_TIME
timer_check
();
extern
int
timers_run
;
/* Maximum number of bytes to send to a pty without an eof. */
static
int
pty_max_bytes
;
...
...
@@ -2078,7 +2079,10 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
if
(
read_kbd
>=
0
)
{
EMACS_TIME
timer_delay
;
int
old_timers_run
=
timers_run
;
timer_delay
=
timer_check
(
1
);
if
(
timers_run
!=
old_timers_run
&&
do_display
)
redisplay_preserve_echo_area
();
if
(
!
EMACS_TIME_NEG_P
(
timer_delay
)
&&
time_limit
!=
-
1
)
{
EMACS_TIME
difference
;
...
...
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