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
7968cc2d
Commit
7968cc2d
authored
Feb 05, 1996
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(sigchld_handler): Use cleaner end-of-list test.
parent
3272c162
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 @
7968cc2d
...
...
@@ -3321,7 +3321,7 @@ sigchld_handler (signo)
/* Find the process that signaled us, and record its status. */
p
=
0
;
for
(
tail
=
Vprocess_alist
;
XSYMBOL
(
tail
)
!=
XSYMBOL
(
Qn
il
);
tail
=
XCONS
(
tail
)
->
cdr
)
for
(
tail
=
Vprocess_alist
;
CONSP
(
ta
il
);
tail
=
XCONS
(
tail
)
->
cdr
)
{
proc
=
XCONS
(
XCONS
(
tail
)
->
car
)
->
cdr
;
p
=
XPROCESS
(
proc
);
...
...
@@ -3333,7 +3333,7 @@ sigchld_handler (signo)
/* Look for an asynchronous process whose pid hasn't been filled
in yet. */
if
(
p
==
0
)
for
(
tail
=
Vprocess_alist
;
XSYMBOL
(
tail
)
!=
XSYMBOL
(
Qn
il
);
tail
=
XCONS
(
tail
)
->
cdr
)
for
(
tail
=
Vprocess_alist
;
CONSP
(
ta
il
);
tail
=
XCONS
(
tail
)
->
cdr
)
{
proc
=
XCONS
(
XCONS
(
tail
)
->
car
)
->
cdr
;
p
=
XPROCESS
(
proc
);
...
...
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