Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f3e6605c
Commit
f3e6605c
authored
Dec 18, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(send_process) [EMACS_HAS_USECS]:
When we wait for the buffer to clear, wait just .02 second.
parent
06720de2
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 @
f3e6605c
...
...
@@ -2781,7 +2781,11 @@ send_process (proc, buf, len, object)
offset
=
buf
-
(
char
*
)
XSTRING
(
object
)
->
data
;
XSETFASTINT
(
zero
,
0
);
#ifdef EMACS_HAS_USECS
wait_reading_process_input
(
0
,
20000
,
zero
,
0
);
#else
wait_reading_process_input
(
1
,
0
,
zero
,
0
);
#endif
if
(
BUFFERP
(
object
))
buf
=
(
char
*
)
BUF_CHAR_ADDRESS
(
XBUFFER
(
object
),
offset
);
...
...
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