Mercurial > emacs
annotate src/systty.h @ 4718:a05b833e61c4
(graft_intervals_into_buffer): New arg INHERIT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 14 Sep 1993 12:10:53 +0000 |
parents | 3541cdf85881 |
children | 4876bc32caf2 |
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 |
4539
3541cdf85881
Handle NO_TERMIO in principal HAVE_TERMIOS case.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
39 #ifndef NO_TERMIO |
578 | 40 #include <termio.h> |
4539
3541cdf85881
Handle NO_TERMIO in principal HAVE_TERMIOS case.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
41 #endif |
578 | 42 #include <termios.h> |
3319
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
43 #endif /* _AIX && _I386 */ |
1929
8ca19160362b
* systty.h [HAVE_TERMIOS]: Include fcntl.h.
Jim Blandy <jimb@redhat.com>
parents:
1597
diff
changeset
|
44 #include <fcntl.h> |
578 | 45 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ |
46 #ifndef VMS | |
47 #include <sgtty.h> | |
1597 | 48 #else /* VMS */ |
49 #include <descrip.h> | |
50 static struct iosb | |
51 { | |
52 short status; | |
53 short offset; | |
54 short termlen; | |
55 short term; | |
56 } input_iosb; | |
57 | |
58 extern int waiting_for_ast; | |
59 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
|
60 #if 0 /* VAX C doeasn't understand initializing declarations */ |
1597 | 61 extern int input_ef = 0; |
62 extern int timer_ef = 0; | |
63 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
|
64 #else |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
65 extern int input_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
66 extern int timer_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
67 extern int process_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
68 #endif |
1597 | 69 extern int input_eflist; |
70 extern int timer_eflist; | |
71 | |
72 static $DESCRIPTOR (input_dsc, "TT"); | |
73 static int terminator_mask[2] = { 0, 0 }; | |
74 | |
75 static struct sensemode { | |
76 short status; | |
77 unsigned char xmit_baud; | |
78 unsigned char rcv_baud; | |
79 unsigned char crfill; | |
80 unsigned char lffill; | |
81 unsigned char parity; | |
82 unsigned char unused; | |
83 char class; | |
84 char type; | |
85 short scr_wid; | |
86 unsigned long tt_char : 24, scr_len : 8; | |
87 unsigned long tt2_char; | |
88 } sensemode_iosb; | |
89 #endif /* VMS */ | |
578 | 90 #endif /* not HAVE_TERMIOS */ |
91 #endif /* not HAVE_TERMIO */ | |
92 | |
621 | 93 #ifdef AIX |
94 /* Get files for keyboard remapping */ | |
95 #define HFNKEYS 2 | |
96 #include <sys/hft.h> | |
97 #include <sys/devinfo.h> | |
98 #endif | |
99 | |
100 /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */ | |
101 #ifdef BSD4_1 | |
102 #undef LLITOUT | |
103 #define LLITOUT 0 | |
104 #endif /* 4.1 */ | |
105 | |
106 #ifdef NEED_BSDTTY | |
107 #include <sys/bsdtty.h> | |
108 #endif | |
109 | |
110 #if defined (HPUX) && defined (HAVE_PTYS) | |
111 #include <sys/ptyio.h> | |
112 #endif | |
113 | |
114 #ifdef AIX | |
115 #include <sys/pty.h> | |
116 #include <unistd.h> | |
117 #endif /* AIX */ | |
118 | |
3306
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
119 #ifdef IRIX4 |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
120 /* Get _getpty prototype */ |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
121 #include <unistd.h> |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
122 #endif |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
123 |
621 | 124 #ifdef SYSV_PTYS |
2943
be86b41a0661
* systty.h [SYSV_PTYS]: #include <sys/types.h>. Francesco
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
125 #include <sys/types.h> |
621 | 126 #include <sys/tty.h> |
648 | 127 #ifdef titan |
128 #include <sys/ttyhw.h> | |
129 #include <sys/stream.h> | |
130 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
131 #ifndef NO_PTY_H |
621 | 132 #include <sys/pty.h> |
133 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
134 #endif |
621 | 135 |
136 /* saka@pfu.fujitsu.co.JP writes: | |
137 FASYNC defined in this file. But, FASYNC don't working. | |
138 so no problem, because unrequest_sigio only need. */ | |
139 #if defined (pfa) | |
140 #include <sys/file.h> | |
141 #endif | |
142 | |
578 | 143 |
144 /* Special cases - inhibiting the use of certain features. */ | |
145 | |
146 #ifdef APOLLO | |
147 #undef TIOCSTART | |
148 #endif | |
149 | |
648 | 150 #ifdef XENIX |
151 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
152 #endif | |
153 | |
578 | 154 #ifdef BROKEN_TIOCGETC |
155 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
156 #endif | |
157 | |
158 /* UNIPLUS systems may have FIONREAD. */ | |
159 #ifdef UNIPLUS | |
160 #include <sys.ioctl.h> | |
161 #endif | |
162 | |
163 /* Allow m- file to inhibit use of FIONREAD. */ | |
164 #ifdef BROKEN_FIONREAD | |
165 #undef FIONREAD | |
166 #undef ASYNC | |
167 #endif | |
168 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3557
diff
changeset
|
169 /* Interrupt input is not used if there is no FIONREAD. */ |
578 | 170 #ifndef FIONREAD |
171 #undef SIGIO | |
172 #endif | |
173 | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
174 /* 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
|
175 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
|
176 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
|
177 #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
|
178 #define HAVE_LTCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
179 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
180 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
181 #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
|
182 #define HAVE_TCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
183 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
184 |
578 | 185 |
1101 | 186 /* Try to establish the correct character to disable terminal functions |
187 in a system-independent manner. Note that USG (at least) define | |
188 _POSIX_VDISABLE as 0! */ | |
189 | |
190 #ifdef _POSIX_VDISABLE | |
191 #define CDISABLE _POSIX_VDISABLE | |
192 #else /* not _POSIX_VDISABLE */ | |
193 #ifdef CDEL | |
3269
3e44fc755c00
* systty.h (CDISABLE): #undef it before re-#defining it.
Jim Blandy <jimb@redhat.com>
parents:
3171
diff
changeset
|
194 #undef CDISABLE |
1101 | 195 #define CDISABLE CDEL |
196 #else /* not CDEL */ | |
197 #define CDISABLE 255 | |
198 #endif /* not CDEL */ | |
199 #endif /* not _POSIX_VDISABLE */ | |
200 | |
578 | 201 /* Get the number of characters queued for output. */ |
202 | |
203 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters | |
204 queued for output to the terminal FD in *SIZE, if FD is a tty. | |
205 Returns -1 if there was an error (i.e. FD is not a tty), 0 | |
206 otherwise. */ | |
207 #ifdef TIOCOUTQ | |
208 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size))) | |
209 #endif | |
210 | |
211 #ifdef HAVE_TERMIO | |
212 #ifdef TCOUTQ | |
213 #undef EMACS_OUTQSIZE | |
214 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size))) | |
215 #endif | |
216 #endif | |
217 | |
218 | |
219 /* Manipulate a terminal's current process group. */ | |
220 | |
221 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current | |
222 controlling process group. | |
223 | |
224 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's | |
225 current process group. Return -1 if there is an error. | |
226 | |
227 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's | |
228 current process group to *PGID. Return -1 if there is an error. */ | |
229 | |
648 | 230 #ifdef HPUX |
231 /* HPUX tty process group stuff doesn't work, says the anonymous voice | |
232 from the past. */ | |
233 #else | |
578 | 234 #ifdef TIOCGPGRP |
235 #define EMACS_HAVE_TTY_PGRP | |
236 #else | |
237 #ifdef HAVE_TERMIOS | |
238 #define EMACS_HAVE_TTY_PGRP | |
239 #endif | |
240 #endif | |
648 | 241 #endif |
578 | 242 |
243 #ifdef EMACS_HAVE_TTY_PGRP | |
244 | |
245 #ifdef HAVE_TERMIOS | |
246 | |
247 #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
|
248 #define EMACS_SET_TTY_PGRP(fd, pgid) (tcsetpgrp ((fd), *(pgid))) |
578 | 249 |
250 #else | |
251 #ifdef TIOCSPGRP | |
252 | |
253 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid))) | |
254 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid))) | |
255 | |
256 #endif | |
257 #endif | |
258 | |
259 #else | |
260 | |
261 /* Just ignore this for now and hope for the best */ | |
262 #define EMACS_GET_TTY_PGRP(fd, pgid) 0 | |
999 | 263 #define EMACS_SET_TTY_PGRP(fd, pgif) 0 |
578 | 264 |
265 #endif | |
266 | |
267 | |
268 /* Manipulate a TTY's input/output processing parameters. */ | |
269 | |
270 /* struct emacs_tty is a structure used to hold the current tty | |
271 parameters. If the terminal has several structures describing its | |
272 state, for example a struct tchars, a struct sgttyb, a struct | |
273 tchars, a struct ltchars, and a struct pagechars, struct | |
274 emacs_tty should contain an element for each parameter struct | |
275 that Emacs may change. | |
276 | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
277 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
|
278 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
|
279 into an error we couldn't deal with. |
578 | 280 |
281 EMACS_SET_TTY (int FD, struct emacs_tty *P, int waitp) | |
282 sets the parameters of the tty on FD according to the contents of | |
283 *P. If waitp is non-zero, we wait for all queued output to be | |
284 written before making the change; otherwise, we forget any queued | |
285 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
|
286 Return 0 if all went well, and -1 if anything failed. |
578 | 287 |
288 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel | |
289 expands tabs to spaces upon output; in that case, there is no | |
290 advantage to using tabs over spaces. */ | |
291 | |
292 | |
293 /* 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
|
294 - 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
|
295 - 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
|
296 new members. */ |
578 | 297 |
298 struct emacs_tty { | |
299 | |
300 /* There is always one of the following elements, so there is no need | |
301 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
|
302 #ifdef HAVE_TCATTR |
578 | 303 struct termios main; |
304 #else | |
305 #ifdef HAVE_TERMIO | |
306 struct termio main; | |
307 #else | |
308 #ifdef VMS | |
309 struct sensemode main; | |
310 #else | |
311 struct sgttyb main; | |
312 #endif | |
313 #endif | |
314 #endif | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
315 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
316 /* 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
|
317 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
|
318 #ifndef HAVE_TERMIOS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
319 #ifdef HAVE_LTCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
320 struct ltchars ltchars; |
578 | 321 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
322 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
323 #ifdef HAVE_TCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
324 struct tchars tchars; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
325 int lmode; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
326 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
327 #endif |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
328 }; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
329 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
330 /* 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
|
331 the macros for reading and setting parts of `struct emacs_tty'. |
578 | 332 |
2658
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
333 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
|
334 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
|
335 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
|
336 #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
|
337 #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp))) |
578 | 338 |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
339 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
340 /* Define EMACS_TTY_TABS_OK. */ |
578 | 341 |
342 #ifdef HAVE_TERMIOS | |
343 | |
344 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
345 | |
346 #else /* not def HAVE_TERMIOS */ | |
347 #ifdef HAVE_TERMIO | |
348 | |
349 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
350 | |
351 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ | |
352 #ifdef VMS | |
353 | |
354 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0) | |
355 | |
356 #else | |
357 | |
358 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) | |
359 | |
360 #endif /* not def VMS */ | |
361 #endif /* not def HAVE_TERMIO */ | |
362 #endif /* not def HAVE_TERMIOS */ |