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
343f4114
Commit
343f4114
authored
Jun 17, 1994
by
Richard M. Stallman
Browse files
(Fprocess_status): Return nil for process name that has no process.
parent
2dd60dfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/process.c
src/process.c
+7
-1
No files found.
src/process.c
View file @
343f4114
...
@@ -626,9 +626,15 @@ nil, indicating the current buffer's process.")
...
@@ -626,9 +626,15 @@ nil, indicating the current buffer's process.")
{
{
register
struct
Lisp_Process
*
p
;
register
struct
Lisp_Process
*
p
;
register
Lisp_Object
status
;
register
Lisp_Object
status
;
proc
=
get_process
(
proc
);
if
(
STRINGP
(
proc
))
proc
=
Fget_process
(
proc
);
else
proc
=
get_process
(
proc
);
if
(
NILP
(
proc
))
if
(
NILP
(
proc
))
return
proc
;
return
proc
;
p
=
XPROCESS
(
proc
);
p
=
XPROCESS
(
proc
);
if
(
!
NILP
(
p
->
raw_status_low
))
if
(
!
NILP
(
p
->
raw_status_low
))
update_status
(
p
);
update_status
(
p
);
...
...
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