From ff27bfbe5cf7f9cb9b5e2a9a5976c5e1cb9dc963 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 12 Apr 1995 01:59:39 +0000 Subject: [PATCH] (child_setup) [WINDOWSNT]: Removed syntax errors. --- src/callproc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/callproc.c b/src/callproc.c index aff272aae0..cc655bd0de 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 */ -- 2.20.1