]> code.delx.au - gnu-emacs/commitdiff
* term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
authorSvante Signell <svante.signell@telia.com>
Fri, 8 Apr 2011 18:44:36 +0000 (14:44 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 8 Apr 2011 18:44:36 +0000 (14:44 -0400)
src/ChangeLog
src/term.c

index 728b215b9ecd87e35e20e84c6b807fe0b867a562..5e92b45b9d0b1a1d18768e09bd73dfe3af63fc01 100644 (file)
@@ -1,3 +1,7 @@
+2011-04-08  Svante Signell  <svante.signell@telia.com>  (tiny change)
+
+       * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
+
 2011-03-19  Christoph Scholtes  <cschol2112@googlemail.com>
 
        * process.c (Fformat_network_address): Doc fix.
index 6d16a65674b043a2a3225b38dca87d6d42a6fbe9..44e127e7154d21d4085826e19d347e583ac2a0b5 100644 (file)
@@ -3413,13 +3413,12 @@ init_tty (char *name, char *terminal_type, int must_succeed)
          if we don't have one at the moment.  */
       fd = emacs_open (name, O_RDWR | O_IGNORE_CTTY | O_NOCTTY, 0);
     else
-#else
+#endif /* O_IGNORE_CTTY */
       /* Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
          defined on Hurd.  On other systems, we need to explicitly
          dissociate ourselves from the controlling tty when we want to
          open a frame on the same terminal.  */
       fd = emacs_open (name, O_RDWR | O_NOCTTY, 0);
-#endif /* O_IGNORE_CTTY */
 
     tty->name = xstrdup (name);
     terminal->name = xstrdup (name);