aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorGerd Moellmann2000-05-20 15:51:35 +0000
committerGerd Moellmann2000-05-20 15:51:35 +0000
commite20caf05ae203afdcc5d2fb0767486fb587b1e13 (patch)
treee56f98cfcf5e440e5e5baaddffadc69ec0f87811 /src/sysdep.c
parent71125fb8362e9a4108943096bb7774755c25fad6 (diff)
downloademacs-e20caf05ae203afdcc5d2fb0767486fb587b1e13.tar.gz
emacs-e20caf05ae203afdcc5d2fb0767486fb587b1e13.zip
(setup_pty): Treat case that UNIX98_PTYS is defined
like SYSV_PTYS.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
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)
1871 Since the latter lossage is more benign, we may as well 1871 Since the latter lossage is more benign, we may as well
1872 lose that way. -- cph */ 1872 lose that way. -- cph */
1873#ifdef FIONBIO 1873#ifdef FIONBIO
1874#ifdef SYSV_PTYS 1874#if defined(SYSV_PTYS) || defined(UNIX98_PTYS)
1875 { 1875 {
1876 int on = 1; 1876 int on = 1;
1877 ioctl (fd, FIONBIO, &on); 1877 ioctl (fd, FIONBIO, &on);