From: Karl Heuer Date: Wed, 12 Apr 1995 01:59:39 +0000 (+0000) Subject: (child_setup) [WINDOWSNT]: Removed syntax errors. X-Git-Tag: emacs-19.34~4479 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff27bfbe5cf7f9cb9b5e2a9a5976c5e1cb9dc963;p=emacs.git (child_setup) [WINDOWSNT]: Removed syntax errors. --- 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 */