1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(Fcall_process): Fix previous change (now !MSDOS only).

This commit is contained in:
Richard M. Stallman 1996-05-12 22:50:25 +00:00
parent 25a1fadb43
commit cd5f8f60db

View File

@ -447,6 +447,10 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir); child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir);
} }
#endif /* not WINDOWSNT */ #endif /* not WINDOWSNT */
/* The MSDOS case did this already. */
if (fd_error >= 0)
close (fd_error);
#endif /* not MSDOS */ #endif /* not MSDOS */
environ = save_environ; environ = save_environ;
@ -456,8 +460,6 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
close (filefd); close (filefd);
if (fd1 >= 0) if (fd1 >= 0)
close (fd1); close (fd1);
if (fd_error >= 0)
close (fd_error);
} }
if (pid < 0) if (pid < 0)