From: Glenn Morris Date: Tue, 10 Jul 2012 01:49:46 +0000 (-0400) Subject: * src/s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards. X-Git-Tag: emacs-24.2.90~1199^2~99 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af6e839f9fadf33b22c145d3103f6e3d9656e804;p=emacs.git * src/s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards. We include usg5-4-common.h, which defines them both. --- diff --git a/src/ChangeLog b/src/ChangeLog index 754f0caf9db..3b7038ffe49 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2012-07-10 Glenn Morris + * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards. + We include usg5-4-common.h, which defines them both. + * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses O_RDONLY already includes it). diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h index 30aca2b5416..212a6ffb839 100644 --- a/src/s/irix6-5.h +++ b/src/s/irix6-5.h @@ -26,9 +26,7 @@ along with GNU Emacs. If not, see . */ #define SETPGRP_RELEASES_CTTY -#ifdef SETUP_SLAVE_PTY #undef SETUP_SLAVE_PTY -#endif /* thomas@mathematik.uni-bremen.de says this is needed. */ /* Make process_send_signal work by "typing" a signal character on the pty. */ @@ -42,9 +40,7 @@ along with GNU Emacs. If not, see . */ /* No need to use sprintf to get the tty name--we get that from _getpty. */ #define PTY_TTY_NAME_SPRINTF /* No need to get the pty name at all. */ -#ifdef PTY_NAME_SPRINTF #undef PTY_NAME_SPRINTF -#endif #define PTY_NAME_SPRINTF #ifdef emacs char *_getpty();