From: Richard M. Stallman Date: Sat, 21 May 1994 07:28:57 +0000 (+0000) Subject: (create_process): Don't complain about error from TIOCSETD. X-Git-Tag: emacs-19.34~8248 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4458f5554d3b4e2a62a922f6fc87fc1714d058ac;p=emacs.git (create_process): Don't complain about error from TIOCSETD. --- 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) { /* Use new line discipline. */ int ldisc = NTTYDISC; - if (ioctl (xforkin, TIOCSETD, &ldisc) < 0) - write (1, "create_process/TIOCSETD failed\n", 31); + ioctl (xforkin, TIOCSETD, &ldisc); } #endif #endif