diff options
| author | Richard M. Stallman | 1996-06-09 20:14:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-09 20:14:44 +0000 |
| commit | b68f1a63fe249a5f5dc182d869625971838ddbd9 (patch) | |
| tree | 11c36e873e536ce99073dcbd6050b013004f6a4e /src | |
| parent | f55aa55a81195ab36c92e3e80fd344adf6b5d6c9 (diff) | |
| download | emacs-b68f1a63fe249a5f5dc182d869625971838ddbd9.tar.gz emacs-b68f1a63fe249a5f5dc182d869625971838ddbd9.zip | |
(DONT_REOPEN_PTY): New definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/freebsd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/s/freebsd.h b/src/s/freebsd.h index 9a32b9bf57d..ecfa869593f 100644 --- a/src/s/freebsd.h +++ b/src/s/freebsd.h | |||
| @@ -92,3 +92,8 @@ | |||
| 92 | /* Needed to avoid hanging when child process writes an error message | 92 | /* Needed to avoid hanging when child process writes an error message |
| 93 | and exits -- enami tsugutomo <enami@ba2.so-net.or.jp>. */ | 93 | and exits -- enami tsugutomo <enami@ba2.so-net.or.jp>. */ |
| 94 | #define vfork fork | 94 | #define vfork fork |
| 95 | |||
| 96 | /* Don't close pty in process.c to make it as controlling terminal. | ||
| 97 | It is already a controlling terminal of subprocess, because we did | ||
| 98 | ioctl TIOCSCTTY. */ | ||
| 99 | #define DONT_REOPEN_PTY | ||