diff options
| author | Richard M. Stallman | 1994-05-21 07:28:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-21 07:28:57 +0000 |
| commit | 4458f5554d3b4e2a62a922f6fc87fc1714d058ac (patch) | |
| tree | ce0fc306cd56e22fd8df6b04efa301483dd68496 /src | |
| parent | 59135ed1f9d833dea7ec7f0c2514d8c1b8e05f17 (diff) | |
| download | emacs-4458f5554d3b4e2a62a922f6fc87fc1714d058ac.tar.gz emacs-4458f5554d3b4e2a62a922f6fc87fc1714d058ac.zip | |
(create_process): Don't complain about error from TIOCSETD.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 44a7d843a29..2e5631ade75 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1318,8 +1318,7 @@ create_process (process, new_argv, current_dir) | |||
| 1318 | { | 1318 | { |
| 1319 | /* Use new line discipline. */ | 1319 | /* Use new line discipline. */ |
| 1320 | int ldisc = NTTYDISC; | 1320 | int ldisc = NTTYDISC; |
| 1321 | if (ioctl (xforkin, TIOCSETD, &ldisc) < 0) | 1321 | ioctl (xforkin, TIOCSETD, &ldisc); |
| 1322 | write (1, "create_process/TIOCSETD failed\n", 31); | ||
| 1323 | } | 1322 | } |
| 1324 | #endif | 1323 | #endif |
| 1325 | #endif | 1324 | #endif |