]> git.eshelyaron.com Git - emacs.git/commitdiff
(setup_pty): Treat case that UNIX98_PTYS is defined
authorGerd Moellmann <gerd@gnu.org>
Sat, 20 May 2000 15:51:35 +0000 (15:51 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sat, 20 May 2000 15:51:35 +0000 (15:51 +0000)
like SYSV_PTYS.

src/sysdep.c

index 5db1403c5397e8e5ceb63801db24bfb7357a5a12..63e0991711efe498b78ee271431fdccaf1c867ec 100644 (file)
@@ -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);