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
833ba342
Commit
833ba342
authored
Apr 07, 1995
by
Richard M. Stallman
Browse files
(read_process_output_error_handler)
(exec_sentinel_error_handler): Fsleep_for wants two args.
parent
f9c4665a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/process.c
src/process.c
+2
-2
No files found.
src/process.c
View file @
833ba342
...
@@ -2249,7 +2249,7 @@ read_process_output_error_handler (error)
...
@@ -2249,7 +2249,7 @@ read_process_output_error_handler (error)
cmd_error_internal
(
error
,
"error in process filter: "
);
cmd_error_internal
(
error
,
"error in process filter: "
);
Vinhibit_quit
=
Qt
;
Vinhibit_quit
=
Qt
;
update_echo_area
();
update_echo_area
();
Fsleep_for
(
make_number
(
2
));
Fsleep_for
(
make_number
(
2
)
,
Qnil
);
}
}
/* Read pending output from the process channel,
/* Read pending output from the process channel,
...
@@ -3315,7 +3315,7 @@ exec_sentinel_error_handler (error)
...
@@ -3315,7 +3315,7 @@ exec_sentinel_error_handler (error)
cmd_error_internal
(
error
,
"error in process sentinel: "
);
cmd_error_internal
(
error
,
"error in process sentinel: "
);
Vinhibit_quit
=
Qt
;
Vinhibit_quit
=
Qt
;
update_echo_area
();
update_echo_area
();
Fsleep_for
(
make_number
(
2
));
Fsleep_for
(
make_number
(
2
)
,
Qnil
);
}
}
static
void
static
void
...
...
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