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
ff27bfbe
Commit
ff27bfbe
authored
Apr 12, 1995
by
Karl Heuer
Browse files
(child_setup) [WINDOWSNT]: Removed syntax errors.
parent
d114e0a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/callproc.c
src/callproc.c
+3
-3
No files found.
src/callproc.c
View file @
ff27bfbe
...
...
@@ -808,9 +808,9 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir)
#ifdef WINDOWSNT
/* Spawn the child. (See ntproc.c:Spawnve). */
cpid
=
spawnve
(
_P_NOWAIT
,
new_argv
[
0
],
new_argv
,
env
);
if
(
cpid
==
-
1
)
{
????
report_file_error
(
"Spawning child process"
,
Qnil
);
}
if
(
cpid
==
-
1
)
/* An error occurred while trying to spawn the process. */
report_file_error
(
"Spawning child process"
,
Qnil
);
reset_standard_handles
(
in
,
out
,
err
,
handles
);
return
cpid
;
#else
/* not WINDOWSNT */
...
...
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