diff options
| author | Paul Eggert | 2013-07-13 17:30:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-07-13 17:30:45 -0700 |
| commit | 4700b5a52dd4dcb27c4beee2c3fda4bfd0ac0e74 (patch) | |
| tree | 03ba0299d44124ec139fce871a3b2d11590d8823 /src/process.c | |
| parent | 2ce3c56586f4061727ace4daed4582d2aa6f8e98 (diff) | |
| download | emacs-4700b5a52dd4dcb27c4beee2c3fda4bfd0ac0e74.tar.gz emacs-4700b5a52dd4dcb27c4beee2c3fda4bfd0ac0e74.zip | |
* callproc.c (child_setup, relocate_fd) [!DOS_NT]:
* process.c (create_process) [!DOS_NT]:
Remove now-unnecessary calls to emacs_close.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 4a38c47443a..8589acaa8b5 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1831,7 +1831,6 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir) | |||
| 1831 | pid = child_setup (xforkin, xforkout, xforkout, | 1831 | pid = child_setup (xforkin, xforkout, xforkout, |
| 1832 | new_argv, 1, encoded_current_dir); | 1832 | new_argv, 1, encoded_current_dir); |
| 1833 | #else /* not WINDOWSNT */ | 1833 | #else /* not WINDOWSNT */ |
| 1834 | emacs_close (wait_child_setup[0]); | ||
| 1835 | child_setup (xforkin, xforkout, xforkout, | 1834 | child_setup (xforkin, xforkout, xforkout, |
| 1836 | new_argv, 1, encoded_current_dir); | 1835 | new_argv, 1, encoded_current_dir); |
| 1837 | #endif /* not WINDOWSNT */ | 1836 | #endif /* not WINDOWSNT */ |