From: Gerd Moellmann Date: Sat, 20 May 2000 15:51:35 +0000 (+0000) Subject: (setup_pty): Treat case that UNIX98_PTYS is defined X-Git-Tag: emacs-pretest-21.0.90~3853 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e20caf05ae203afdcc5d2fb0767486fb587b1e13;p=emacs.git (setup_pty): Treat case that UNIX98_PTYS is defined like SYSV_PTYS. --- diff --git a/src/sysdep.c b/src/sysdep.c index 5db1403c539..63e0991711e 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1871,7 +1871,7 @@ setup_pty (fd) Since the latter lossage is more benign, we may as well lose that way. -- cph */ #ifdef FIONBIO -#ifdef SYSV_PTYS +#if defined(SYSV_PTYS) || defined(UNIX98_PTYS) { int on = 1; ioctl (fd, FIONBIO, &on);