Mercurial > emacs
annotate src/systty.h @ 4501:9352d7d021c2
* config.h.in (HAVE_LOGB, HAVE_FREXP): Add #undefs for the
configuration script to edit.
* floatfns.c (Flogb): Use HAVE_LOGB and HAVE_FREXP, instead of
assuming that all USG systems have FREXP.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 09 Aug 1993 06:04:14 +0000 |
parents | 507f64624555 |
children | 3541cdf85881 |
rev | line source |
---|---|
1597 | 1 /* systty.h - System-dependent definitions for terminals. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
578 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 1, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
20 #ifdef HAVE_TERMIOS |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
21 #define HAVE_TCATTR |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
22 #endif |
578 | 23 |
24 /* Include the proper files. */ | |
25 #ifdef HAVE_TERMIO | |
2912
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
26 #ifdef __DGUX |
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
27 #include <sys/ioctl.h> |
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
28 #endif |
3557
009b22e07a63
Add NO_TERMIO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
3319
diff
changeset
|
29 #ifndef NO_TERMIO |
578 | 30 #include <termio.h> |
3557
009b22e07a63
Add NO_TERMIO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
3319
diff
changeset
|
31 #endif /* not NO_TERMIO */ |
578 | 32 #include <fcntl.h> |
33 #else | |
34 #ifdef HAVE_TERMIOS | |
3319
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
35 #if defined(_AIX) && defined(_I386) |
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
36 #include <termios.h> /* termios.h needs to be before termio.h */ |
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
37 #include <termio.h> |
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
38 #else |
578 | 39 #include <termio.h> |
40 #include <termios.h> | |
3319
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
41 #endif /* _AIX && _I386 */ |
1929
8ca19160362b
* systty.h [HAVE_TERMIOS]: Include fcntl.h.
Jim Blandy <jimb@redhat.com>
parents:
1597
diff
changeset
|
42 #include <fcntl.h> |
578 | 43 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ |
44 #ifndef VMS | |
45 #include <sgtty.h> | |
1597 | 46 #else /* VMS */ |
47 #include <descrip.h> | |
48 static struct iosb | |
49 { | |
50 short status; | |
51 short offset; | |
52 short termlen; | |
53 short term; | |
54 } input_iosb; | |
55 | |
56 extern int waiting_for_ast; | |
57 extern int stop_input; | |
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
58 #if 0 /* VAX C doeasn't understand initializing declarations */ |
1597 | 59 extern int input_ef = 0; |
60 extern int timer_ef = 0; | |
61 extern int process_ef = 0; | |
2264
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
62 #else |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
63 extern int input_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
64 extern int timer_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
65 extern int process_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
66 #endif |
1597 | 67 extern int input_eflist; |
68 extern int timer_eflist; | |
69 | |
70 static $DESCRIPTOR (input_dsc, "TT"); | |
71 static int terminator_mask[2] = { 0, 0 }; | |
72 | |
73 static struct sensemode { | |
74 short status; | |
75 unsigned char xmit_baud; | |
76 unsigned char rcv_baud; | |
77 unsigned char crfill; | |
78 unsigned char lffill; | |
79 unsigned char parity; | |
80 unsigned char unused; | |
81 char class; | |
82 char type; | |
83 short scr_wid; | |
84 unsigned long tt_char : 24, scr_len : 8; | |
85 unsigned long tt2_char; | |
86 } sensemode_iosb; | |
87 #endif /* VMS */ | |
578 | 88 #endif /* not HAVE_TERMIOS */ |
89 #endif /* not HAVE_TERMIO */ | |
90 | |
621 | 91 #ifdef AIX |
92 /* Get files for keyboard remapping */ | |
93 #define HFNKEYS 2 | |
94 #include <sys/hft.h> | |
95 #include <sys/devinfo.h> | |
96 #endif | |
97 | |
98 /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */ | |
99 #ifdef BSD4_1 | |
100 #undef LLITOUT | |
101 #define LLITOUT 0 | |
102 #endif /* 4.1 */ | |
103 | |
104 #ifdef NEED_BSDTTY | |
105 #include <sys/bsdtty.h> | |
106 #endif | |
107 | |
108 #if defined (HPUX) && defined (HAVE_PTYS) | |
109 #include <sys/ptyio.h> | |
110 #endif | |
111 | |
112 #ifdef AIX | |
113 #include <sys/pty.h> | |
114 #include <unistd.h> | |
115 #endif /* AIX */ | |
116 | |
3306
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
117 #ifdef IRIX4 |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
118 /* Get _getpty prototype */ |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
119 #include <unistd.h> |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
120 #endif |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
121 |
621 | 122 #ifdef SYSV_PTYS |
2943
be86b41a0661
* systty.h [SYSV_PTYS]: #include <sys/types.h>. Francesco
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
123 #include <sys/types.h> |
621 | 124 #include <sys/tty.h> |
648 | 125 #ifdef titan |
126 #include <sys/ttyhw.h> | |
127 #include <sys/stream.h> | |
128 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
129 #ifndef NO_PTY_H |
621 | 130 #include <sys/pty.h> |
131 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
132 #endif |
621 | 133 |
134 /* saka@pfu.fujitsu.co.JP writes: | |
135 FASYNC defined in this file. But, FASYNC don't working. | |
136 so no problem, because unrequest_sigio only need. */ | |
137 #if defined (pfa) | |
138 #include <sys/file.h> | |
139 #endif | |
140 | |
578 | 141 |
142 /* Special cases - inhibiting the use of certain features. */ | |
143 | |
144 #ifdef APOLLO | |
145 #undef TIOCSTART | |
146 #endif | |
147 | |
648 | 148 #ifdef XENIX |
149 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
150 #endif | |
151 | |
578 | 152 #ifdef BROKEN_TIOCGETC |
153 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
154 #endif | |
155 | |
156 /* UNIPLUS systems may have FIONREAD. */ | |
157 #ifdef UNIPLUS | |
158 #include <sys.ioctl.h> | |
159 #endif | |
160 | |
161 /* Allow m- file to inhibit use of FIONREAD. */ | |
162 #ifdef BROKEN_FIONREAD | |
163 #undef FIONREAD | |
164 #undef ASYNC | |
165 #endif | |
166 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3557
diff
changeset
|
167 /* Interrupt input is not used if there is no FIONREAD. */ |
578 | 168 #ifndef FIONREAD |
169 #undef SIGIO | |
170 #endif | |
171 | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
172 /* On TERMIOS systems, the tcmumbleattr calls take care of these |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
173 parameters, and it's a bad idea to use them (on AIX, it makes the |
3171
f26d9c469926
* systty.h: Always terminate comments, to avoid confusion.
Jim Blandy <jimb@redhat.com>
parents:
3157
diff
changeset
|
174 tty hang for a long time). */ |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
175 #if defined (TIOCGLTC) && !defined (HAVE_TERMIOS) |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
176 #define HAVE_LTCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
177 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
178 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
179 #if defined (TIOCGETC) && !defined (HAVE_TERMIOS) |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
180 #define HAVE_TCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
181 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
182 |
578 | 183 |
1101 | 184 /* Try to establish the correct character to disable terminal functions |
185 in a system-independent manner. Note that USG (at least) define | |
186 _POSIX_VDISABLE as 0! */ | |
187 | |
188 #ifdef _POSIX_VDISABLE | |
189 #define CDISABLE _POSIX_VDISABLE | |
190 #else /* not _POSIX_VDISABLE */ | |
191 #ifdef CDEL | |
3269
3e44fc755c00
* systty.h (CDISABLE): #undef it before re-#defining it.
Jim Blandy <jimb@redhat.com>
parents:
3171
diff
changeset
|
192 #undef CDISABLE |
1101 | 193 #define CDISABLE CDEL |
194 #else /* not CDEL */ | |
195 #define CDISABLE 255 | |
196 #endif /* not CDEL */ | |
197 #endif /* not _POSIX_VDISABLE */ | |
198 | |
578 | 199 /* Get the number of characters queued for output. */ |
200 | |
201 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters | |
202 queued for output to the terminal FD in *SIZE, if FD is a tty. | |
203 Returns -1 if there was an error (i.e. FD is not a tty), 0 | |
204 otherwise. */ | |
205 #ifdef TIOCOUTQ | |
206 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size))) | |
207 #endif | |
208 | |
209 #ifdef HAVE_TERMIO | |
210 #ifdef TCOUTQ | |
211 #undef EMACS_OUTQSIZE | |
212 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size))) | |
213 #endif | |
214 #endif | |
215 | |
216 | |
217 /* Manipulate a terminal's current process group. */ | |
218 | |
219 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current | |
220 controlling process group. | |
221 | |
222 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's | |
223 current process group. Return -1 if there is an error. | |
224 | |
225 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's | |
226 current process group to *PGID. Return -1 if there is an error. */ | |
227 | |
648 | 228 #ifdef HPUX |
229 /* HPUX tty process group stuff doesn't work, says the anonymous voice | |
230 from the past. */ | |
231 #else | |
578 | 232 #ifdef TIOCGPGRP |
233 #define EMACS_HAVE_TTY_PGRP | |
234 #else | |
235 #ifdef HAVE_TERMIOS | |
236 #define EMACS_HAVE_TTY_PGRP | |
237 #endif | |
238 #endif | |
648 | 239 #endif |
578 | 240 |
241 #ifdef EMACS_HAVE_TTY_PGRP | |
242 | |
243 #ifdef HAVE_TERMIOS | |
244 | |
245 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp ((fd))) | |
2917
725698689fbd
Some more changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2912
diff
changeset
|
246 #define EMACS_SET_TTY_PGRP(fd, pgid) (tcsetpgrp ((fd), *(pgid))) |
578 | 247 |
248 #else | |
249 #ifdef TIOCSPGRP | |
250 | |
251 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid))) | |
252 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid))) | |
253 | |
254 #endif | |
255 #endif | |
256 | |
257 #else | |
258 | |
259 /* Just ignore this for now and hope for the best */ | |
260 #define EMACS_GET_TTY_PGRP(fd, pgid) 0 | |
999 | 261 #define EMACS_SET_TTY_PGRP(fd, pgif) 0 |
578 | 262 |
263 #endif | |
264 | |
265 | |
266 /* Manipulate a TTY's input/output processing parameters. */ | |
267 | |
268 /* struct emacs_tty is a structure used to hold the current tty | |
269 parameters. If the terminal has several structures describing its | |
270 state, for example a struct tchars, a struct sgttyb, a struct | |
271 tchars, a struct ltchars, and a struct pagechars, struct | |
272 emacs_tty should contain an element for each parameter struct | |
273 that Emacs may change. | |
274 | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
275 EMACS_GET_TTY (int FD, struct emacs_tty *P) stores the parameters |
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
276 of the tty on FD in *P. Return zero if all's well, or -1 if we ran |
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
277 into an error we couldn't deal with. |
578 | 278 |
279 EMACS_SET_TTY (int FD, struct emacs_tty *P, int waitp) | |
280 sets the parameters of the tty on FD according to the contents of | |
281 *P. If waitp is non-zero, we wait for all queued output to be | |
282 written before making the change; otherwise, we forget any queued | |
283 input and make the change immediately. | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
284 Return 0 if all went well, and -1 if anything failed. |
578 | 285 |
286 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel | |
287 expands tabs to spaces upon output; in that case, there is no | |
288 advantage to using tabs over spaces. */ | |
289 | |
290 | |
291 /* For each tty parameter structure that Emacs might want to save and restore, | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
292 - include an element for it in this structure, and |
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
293 - extend the emacs_{get,set}_tty functions in sysdep.c to deal with the |
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
294 new members. */ |
578 | 295 |
296 struct emacs_tty { | |
297 | |
298 /* There is always one of the following elements, so there is no need | |
299 for dummy get and set definitions. */ | |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
300 #ifdef HAVE_TCATTR |
578 | 301 struct termios main; |
302 #else | |
303 #ifdef HAVE_TERMIO | |
304 struct termio main; | |
305 #else | |
306 #ifdef VMS | |
307 struct sensemode main; | |
308 #else | |
309 struct sgttyb main; | |
310 #endif | |
311 #endif | |
312 #endif | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
313 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
314 /* If we have TERMIOS, we don't need to do this - they're taken care of |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
315 by the tc*attr calls. */ |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
316 #ifndef HAVE_TERMIOS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
317 #ifdef HAVE_LTCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
318 struct ltchars ltchars; |
578 | 319 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
320 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
321 #ifdef HAVE_TCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
322 struct tchars tchars; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
323 int lmode; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
324 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
325 #endif |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
326 }; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
327 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
328 /* Define EMACS_GET_TTY and EMACS_SET_TTY, |
2658
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
329 the macros for reading and setting parts of `struct emacs_tty'. |
578 | 330 |
2658
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
331 These got pretty unmanageable (huge macros are hard to debug), and |
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
332 finally needed some code which couldn't be done as part of an |
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
333 expression, so we moved them out to their own functions in sysdep.c. */ |
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
334 #define EMACS_GET_TTY(fd, p) (emacs_get_tty ((fd), (p))) |
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
335 #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp))) |
578 | 336 |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
337 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
338 /* Define EMACS_TTY_TABS_OK. */ |
578 | 339 |
340 #ifdef HAVE_TERMIOS | |
341 | |
342 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
343 | |
344 #else /* not def HAVE_TERMIOS */ | |
345 #ifdef HAVE_TERMIO | |
346 | |
347 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
348 | |
349 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ | |
350 #ifdef VMS | |
351 | |
352 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0) | |
353 | |
354 #else | |
355 | |
356 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) | |
357 | |
358 #endif /* not def VMS */ | |
359 #endif /* not def HAVE_TERMIO */ | |
360 #endif /* not def HAVE_TERMIOS */ |