diff options
author | Glenn Morris <rgm@gnu.org> | 2012-07-11 23:34:40 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-07-11 23:34:40 -0700 |
commit | 6e7778482fb5fc9e527b799db7c83b210674c2a8 (patch) | |
tree | 0f8abc321d764ce068acbeea87bd7b947e1eea65 /src/s/irix6-5.h | |
parent | 4a7edc24ba4da27f44151df4e4541c86c35d3037 (diff) | |
download | emacs-6e7778482fb5fc9e527b799db7c83b210674c2a8.tar.gz |
Move FIRST_PTY_LETTER, PTY_ITERATION from src/s to configure
* configure.ac (FIRST_PTY_LETTER PTY_ITERATION): Move here from src/s.
* src/s/aix4-2.h, src/s/bsd-common.h, src/s/cygwin.h, src/s/darwin.h:
* src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h, src/s/template.h:
* src/s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
Diffstat (limited to 'src/s/irix6-5.h')
-rw-r--r-- | src/s/irix6-5.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h index dd7a00d0ba7..cd7b2902026 100644 --- a/src/s/irix6-5.h +++ b/src/s/irix6-5.h @@ -26,11 +26,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #undef SETUP_SLAVE_PTY -/* Letter to use in finding device name of first pty, - if system supports pty's. 'a' means it is /dev/ptya0 */ -#undef FIRST_PTY_LETTER -#define FIRST_PTY_LETTER 'q' - /* 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. */ @@ -39,8 +34,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #ifdef emacs char *_getpty(); #endif -/* We need only try once to open a pty. */ -#define PTY_ITERATION /* Here is how to do it. */ #define PTY_OPEN \ { \ |