]> git.eshelyaron.com Git - emacs.git/commitdiff
(child_setup) [WINDOWSNT]: Removed syntax errors.
authorKarl Heuer <kwzh@gnu.org>
Wed, 12 Apr 1995 01:59:39 +0000 (01:59 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 12 Apr 1995 01:59:39 +0000 (01:59 +0000)
src/callproc.c

index aff272aae0b40ea50f953c7dcb290de3409d3e7f..cc655bd0de9704ba2aaa16054d7b9bbf658b2686 100644 (file)
@@ -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 */