diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-12 01:59:39 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-12 01:59:39 +0000 |
commit | 3effc9422b873209c31961b2a9b00ba168602906 (patch) | |
tree | 0ea6563df75b367a3fef34646d6f2254ea64a8c1 /src/callproc.c | |
parent | 216fd3f2f72e21dd2dbd2ee3df097f2e679e3be0 (diff) | |
download | emacs-3effc9422b873209c31961b2a9b00ba168602906.tar.gz |
(child_setup) [WINDOWSNT]: Removed syntax errors.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/callproc.c b/src/callproc.c index aff272aae0b..cc655bd0de9 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -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 */ |