Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9076a823
Commit
9076a823
authored
Jan 20, 2004
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(wait_reading_process_input): Lisp_Object/int mixup.
parent
45c7d781
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
src/ChangeLog
src/ChangeLog
+6
-0
src/process.c
src/process.c
+2
-2
No files found.
src/ChangeLog
View file @
9076a823
2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
* process.c (wait_reading_process_input): Lisp_Object/int mixup.
* dired.c (Ffile_attributes): Lisp_Object/int mixup.
2004-01-19 Kenichi Handa <handa@m17n.org>
* fontset.c (fontset_font_pattern): Fix previous change.
...
...
src/process.c
View file @
9076a823
/* Asynchronous subprocess control for GNU Emacs.
Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999,
2001, 2002, 2003 Free Software Foundation, Inc.
2001, 2002, 2003
, 2004
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -4296,7 +4296,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
proc = chan_process[channel];
if (NILP (proc))
continue;
if (XPROCESS (proc)->read_output_delay > 0)
if
(XINT
(XPROCESS (proc)->read_output_delay
)
> 0)
{
check_delay--;
if (NILP (XPROCESS (proc)->read_output_skip))
...
...
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