diff options
| author | Richard M. Stallman | 1994-04-18 17:40:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-18 17:40:25 +0000 |
| commit | aafadd9f1795268ffbccdff265ac105c599fb402 (patch) | |
| tree | 7d745cf24afad34483abcdff0d8aefcd15ad1975 | |
| parent | 31c5ee7bb7d2460c365453d98881f4d118360679 (diff) | |
| download | emacs-aafadd9f1795268ffbccdff265ac105c599fb402.tar.gz emacs-aafadd9f1795268ffbccdff265ac105c599fb402.zip | |
(create_process): Fix previous change.
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 8ff0a038638..191425e98fb 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1290,7 +1290,7 @@ create_process (process, new_argv, current_dir) | |||
| 1290 | setpgrp (); | 1290 | setpgrp (); |
| 1291 | #endif /* USG */ | 1291 | #endif /* USG */ |
| 1292 | #endif /* not HAVE_SETSID */ | 1292 | #endif /* not HAVE_SETSID */ |
| 1293 | #if defined (NTTYDISC) || defined (TIOCSETD) | 1293 | #if defined (NTTYDISC) && defined (TIOCSETD) |
| 1294 | if (pty_flag && xforkin >= 0) | 1294 | if (pty_flag && xforkin >= 0) |
| 1295 | { | 1295 | { |
| 1296 | /* Use new line discipline. */ | 1296 | /* Use new line discipline. */ |