Mercurial > emacs
changeset 29033:bad1d68a57e3
(setup_pty): Treat case that UNIX98_PTYS is defined
like SYSV_PTYS.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sat, 20 May 2000 15:51:35 +0000 |
parents | 659202362f2b |
children | a21179c97039 |
files | src/sysdep.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Sat May 20 15:51:13 2000 +0000 +++ b/src/sysdep.c Sat May 20 15:51:35 2000 +0000 @@ -1871,7 +1871,7 @@ 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);