Mercurial > emacs
annotate src/systty.h @ 50384:09ec24acd6a5
(reveal-post-command): Remove buggy debugging code.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 31 Mar 2003 22:26:26 +0000 |
parents | 23a1cea22d13 |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
1597 | 1 /* systty.h - System-dependent definitions for terminals. |
7307 | 2 Copyright (C) 1993, 1994 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 | |
9795 | 8 the Free Software Foundation; either version 2, or (at your option) |
578 | 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 | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12232
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
12232
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
578 | 20 |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
21 #ifdef HAVE_TERMIOS |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
22 #define HAVE_TCATTR |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
23 #endif |
5026
6a3e9555cee3
[BSD_TERMIOS]: Under NL0, NL1..., ECHO, NOFLSH, TOSTOP,
Richard M. Stallman <rms@gnu.org>
parents:
4959
diff
changeset
|
24 |
578 | 25 |
26 /* Include the proper files. */ | |
27 #ifdef HAVE_TERMIO | |
2912
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
28 #ifdef __DGUX |
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
29 #include <sys/ioctl.h> |
32106dbf6d01
Some changes from Michael K. Johnson for Linux.
Jim Blandy <jimb@redhat.com>
parents:
2873
diff
changeset
|
30 #endif |
3557
009b22e07a63
Add NO_TERMIO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
3319
diff
changeset
|
31 #ifndef NO_TERMIO |
578 | 32 #include <termio.h> |
3557
009b22e07a63
Add NO_TERMIO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
3319
diff
changeset
|
33 #endif /* not NO_TERMIO */ |
6819
0d592cff389f
Check for INCLUDED_FCNTL already defined.
Richard M. Stallman <rms@gnu.org>
parents:
6599
diff
changeset
|
34 #ifndef INCLUDED_FCNTL |
6599
43fffc5a7dd8
(INCLUDED_FCNTL): Define, if include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
5968
diff
changeset
|
35 #define INCLUDED_FCNTL |
578 | 36 #include <fcntl.h> |
6819
0d592cff389f
Check for INCLUDED_FCNTL already defined.
Richard M. Stallman <rms@gnu.org>
parents:
6599
diff
changeset
|
37 #endif |
0d592cff389f
Check for INCLUDED_FCNTL already defined.
Richard M. Stallman <rms@gnu.org>
parents:
6599
diff
changeset
|
38 #else /* not HAVE_TERMIO */ |
578 | 39 #ifdef HAVE_TERMIOS |
3319
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
40 #if defined(_AIX) && defined(_I386) |
e177111a0442
[HAVE_TERMIOS _AIX _I386]: Include termios before termio.
Richard M. Stallman <rms@gnu.org>
parents:
3306
diff
changeset
|
41 #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
|
42 #include <termio.h> |
16205 | 43 #else /* not (_AIX && _I386) */ |
4539
3541cdf85881
Handle NO_TERMIO in principal HAVE_TERMIOS case.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
44 #ifndef NO_TERMIO |
578 | 45 #include <termio.h> |
4539
3541cdf85881
Handle NO_TERMIO in principal HAVE_TERMIOS case.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
46 #endif |
578 | 47 #include <termios.h> |
16205 | 48 #endif /* not (_AIX && _I386) */ |
6599
43fffc5a7dd8
(INCLUDED_FCNTL): Define, if include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
5968
diff
changeset
|
49 #define INCLUDED_FCNTL |
1929
8ca19160362b
* systty.h [HAVE_TERMIOS]: Include fcntl.h.
Jim Blandy <jimb@redhat.com>
parents:
1597
diff
changeset
|
50 #include <fcntl.h> |
578 | 51 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ |
52 #ifndef VMS | |
9795 | 53 #ifndef DOS_NT |
578 | 54 #include <sgtty.h> |
9795 | 55 #endif /* not DOS_NT */ |
1597 | 56 #else /* VMS */ |
57 #include <descrip.h> | |
58 static struct iosb | |
59 { | |
60 short status; | |
61 short offset; | |
62 short termlen; | |
63 short term; | |
64 } input_iosb; | |
65 | |
66 extern int waiting_for_ast; | |
67 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
|
68 extern int input_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
69 extern int timer_ef; |
87934d212841
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
2095
diff
changeset
|
70 extern int process_ef; |
1597 | 71 extern int input_eflist; |
72 extern int timer_eflist; | |
73 | |
74 static $DESCRIPTOR (input_dsc, "TT"); | |
75 static int terminator_mask[2] = { 0, 0 }; | |
76 | |
77 static struct sensemode { | |
78 short status; | |
79 unsigned char xmit_baud; | |
80 unsigned char rcv_baud; | |
81 unsigned char crfill; | |
82 unsigned char lffill; | |
83 unsigned char parity; | |
84 unsigned char unused; | |
85 char class; | |
86 char type; | |
87 short scr_wid; | |
88 unsigned long tt_char : 24, scr_len : 8; | |
89 unsigned long tt2_char; | |
90 } sensemode_iosb; | |
91 #endif /* VMS */ | |
578 | 92 #endif /* not HAVE_TERMIOS */ |
93 #endif /* not HAVE_TERMIO */ | |
94 | |
7460
dc5c72c57c70
[__GNU_LIBRARY__]: Include <termios.h>.
Roland McGrath <roland@gnu.org>
parents:
7307
diff
changeset
|
95 #ifdef __GNU_LIBRARY__ |
15266
8f94c7ce22db
[__GNU_LIBRARY__]: #include <sys/ioctl.h>.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
96 #include <sys/ioctl.h> |
7460
dc5c72c57c70
[__GNU_LIBRARY__]: Include <termios.h>.
Roland McGrath <roland@gnu.org>
parents:
7307
diff
changeset
|
97 #include <termios.h> |
dc5c72c57c70
[__GNU_LIBRARY__]: Include <termios.h>.
Roland McGrath <roland@gnu.org>
parents:
7307
diff
changeset
|
98 #endif |
dc5c72c57c70
[__GNU_LIBRARY__]: Include <termios.h>.
Roland McGrath <roland@gnu.org>
parents:
7307
diff
changeset
|
99 |
10137
b841b238f556
Change AIX conditional around HFNKEYS to AIXHFT.
Richard M. Stallman <rms@gnu.org>
parents:
10076
diff
changeset
|
100 #ifdef AIXHFT |
621 | 101 /* Get files for keyboard remapping */ |
102 #define HFNKEYS 2 | |
103 #include <sys/hft.h> | |
104 #include <sys/devinfo.h> | |
105 #endif | |
106 | |
107 /* Get rid of LLITOUT in 4.1, since it is said to stimulate kernel bugs. */ | |
108 #ifdef BSD4_1 | |
109 #undef LLITOUT | |
110 #define LLITOUT 0 | |
111 #endif /* 4.1 */ | |
112 | |
113 #ifdef NEED_BSDTTY | |
114 #include <sys/bsdtty.h> | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48556
diff
changeset
|
115 #endif |
621 | 116 |
117 #if defined (HPUX) && defined (HAVE_PTYS) | |
118 #include <sys/ptyio.h> | |
119 #endif | |
10076
a7308fb078c9
Have just one conditional to include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
9795
diff
changeset
|
120 |
621 | 121 #ifdef AIX |
122 #include <sys/pty.h> | |
123 #endif /* AIX */ | |
124 | |
10076
a7308fb078c9
Have just one conditional to include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
9795
diff
changeset
|
125 #if (defined (POSIX) || defined (NEED_UNISTD_H)) && defined (HAVE_UNISTD_H) |
3306
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
126 #include <unistd.h> |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
127 #endif |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
128 |
621 | 129 #ifdef SYSV_PTYS |
2943
be86b41a0661
* systty.h [SYSV_PTYS]: #include <sys/types.h>. Francesco
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
130 #include <sys/types.h> |
621 | 131 #include <sys/tty.h> |
648 | 132 #ifdef titan |
133 #include <sys/ttyhw.h> | |
134 #include <sys/stream.h> | |
135 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
136 #ifndef NO_PTY_H |
621 | 137 #include <sys/pty.h> |
138 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
139 #endif |
621 | 140 |
141 /* saka@pfu.fujitsu.co.JP writes: | |
142 FASYNC defined in this file. But, FASYNC don't working. | |
143 so no problem, because unrequest_sigio only need. */ | |
144 #if defined (pfa) | |
145 #include <sys/file.h> | |
146 #endif | |
147 | |
578 | 148 |
149 /* Special cases - inhibiting the use of certain features. */ | |
150 | |
151 #ifdef APOLLO | |
152 #undef TIOCSTART | |
153 #endif | |
154 | |
648 | 155 #ifdef XENIX |
156 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
157 #endif | |
158 | |
578 | 159 #ifdef BROKEN_TIOCGETC |
160 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
161 #endif | |
162 | |
163 /* UNIPLUS systems may have FIONREAD. */ | |
164 #ifdef UNIPLUS | |
165 #include <sys.ioctl.h> | |
166 #endif | |
167 | |
168 /* Allow m- file to inhibit use of FIONREAD. */ | |
169 #ifdef BROKEN_FIONREAD | |
170 #undef FIONREAD | |
171 #undef ASYNC | |
172 #endif | |
173 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3557
diff
changeset
|
174 /* Interrupt input is not used if there is no FIONREAD. */ |
578 | 175 #ifndef FIONREAD |
176 #undef SIGIO | |
177 #endif | |
178 | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
179 /* 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
|
180 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
|
181 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
|
182 #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
|
183 #define HAVE_LTCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
184 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
185 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
186 #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
|
187 #define HAVE_TCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
188 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
189 |
578 | 190 |
1101 | 191 /* Try to establish the correct character to disable terminal functions |
192 in a system-independent manner. Note that USG (at least) define | |
193 _POSIX_VDISABLE as 0! */ | |
194 | |
195 #ifdef _POSIX_VDISABLE | |
196 #define CDISABLE _POSIX_VDISABLE | |
197 #else /* not _POSIX_VDISABLE */ | |
198 #ifdef CDEL | |
3269
3e44fc755c00
* systty.h (CDISABLE): #undef it before re-#defining it.
Jim Blandy <jimb@redhat.com>
parents:
3171
diff
changeset
|
199 #undef CDISABLE |
1101 | 200 #define CDISABLE CDEL |
201 #else /* not CDEL */ | |
202 #define CDISABLE 255 | |
203 #endif /* not CDEL */ | |
204 #endif /* not _POSIX_VDISABLE */ | |
205 | |
578 | 206 /* Get the number of characters queued for output. */ |
207 | |
208 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters | |
209 queued for output to the terminal FD in *SIZE, if FD is a tty. | |
210 Returns -1 if there was an error (i.e. FD is not a tty), 0 | |
211 otherwise. */ | |
212 #ifdef TIOCOUTQ | |
213 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size))) | |
214 #endif | |
215 | |
216 #ifdef HAVE_TERMIO | |
217 #ifdef TCOUTQ | |
218 #undef EMACS_OUTQSIZE | |
219 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size))) | |
220 #endif | |
221 #endif | |
222 | |
223 | |
224 /* Manipulate a terminal's current process group. */ | |
225 | |
226 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current | |
227 controlling process group. | |
228 | |
229 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's | |
230 current process group. Return -1 if there is an error. | |
231 | |
232 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's | |
233 current process group to *PGID. Return -1 if there is an error. */ | |
234 | |
648 | 235 #ifdef HPUX |
236 /* HPUX tty process group stuff doesn't work, says the anonymous voice | |
237 from the past. */ | |
238 #else | |
578 | 239 #ifdef TIOCGPGRP |
240 #define EMACS_HAVE_TTY_PGRP | |
241 #else | |
242 #ifdef HAVE_TERMIOS | |
243 #define EMACS_HAVE_TTY_PGRP | |
244 #endif | |
245 #endif | |
648 | 246 #endif |
578 | 247 |
248 #ifdef EMACS_HAVE_TTY_PGRP | |
249 | |
5132
de089ed6966f
(EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP):
Richard M. Stallman <rms@gnu.org>
parents:
5026
diff
changeset
|
250 #if defined (HAVE_TERMIOS) && ! defined (BSD_TERMIOS) |
578 | 251 |
252 #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
|
253 #define EMACS_SET_TTY_PGRP(fd, pgid) (tcsetpgrp ((fd), *(pgid))) |
578 | 254 |
255 #else | |
256 #ifdef TIOCSPGRP | |
257 | |
258 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid))) | |
259 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid))) | |
260 | |
261 #endif | |
262 #endif | |
263 | |
264 #else | |
265 | |
266 /* Just ignore this for now and hope for the best */ | |
267 #define EMACS_GET_TTY_PGRP(fd, pgid) 0 | |
999 | 268 #define EMACS_SET_TTY_PGRP(fd, pgif) 0 |
578 | 269 |
270 #endif | |
271 | |
15562
335159567eb8
(GETPGRP_NO_ARG): Always define it, if __GNU_LIBRARY__.
Richard M. Stallman <rms@gnu.org>
parents:
15266
diff
changeset
|
272 /* EMACS_GETPGRP (arg) returns the process group of the process. */ |
4959
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
273 |
48556
646e69ae7ad6
Don't conditionally define GETPGRP_NO_ARG. Test
Dave Love <fx@gnu.org>
parents:
23990
diff
changeset
|
274 #if defined (GETPGRP_VOID) |
4959
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
275 # define EMACS_GETPGRP(x) getpgrp() |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
276 #else |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
277 # define EMACS_GETPGRP(x) getpgrp(x) |
48556
646e69ae7ad6
Don't conditionally define GETPGRP_NO_ARG. Test
Dave Love <fx@gnu.org>
parents:
23990
diff
changeset
|
278 #endif /* !GETPGRP_VOID */ |
578 | 279 |
280 /* Manipulate a TTY's input/output processing parameters. */ | |
281 | |
282 /* struct emacs_tty is a structure used to hold the current tty | |
283 parameters. If the terminal has several structures describing its | |
284 state, for example a struct tchars, a struct sgttyb, a struct | |
285 tchars, a struct ltchars, and a struct pagechars, struct | |
286 emacs_tty should contain an element for each parameter struct | |
287 that Emacs may change. | |
288 | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
289 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
|
290 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
|
291 into an error we couldn't deal with. |
578 | 292 |
12232 | 293 EMACS_SET_TTY (int FD, struct emacs_tty *P, int flushp) |
578 | 294 sets the parameters of the tty on FD according to the contents of |
12232 | 295 *P. If flushp is non-zero, we discard queued input to be |
296 written before making the change. | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
297 Return 0 if all went well, and -1 if anything failed. |
578 | 298 |
299 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel | |
300 expands tabs to spaces upon output; in that case, there is no | |
301 advantage to using tabs over spaces. */ | |
302 | |
303 | |
304 /* 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
|
305 - 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
|
306 - 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
|
307 new members. */ |
578 | 308 |
309 struct emacs_tty { | |
310 | |
311 /* There is always one of the following elements, so there is no need | |
312 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
|
313 #ifdef HAVE_TCATTR |
578 | 314 struct termios main; |
315 #else | |
316 #ifdef HAVE_TERMIO | |
317 struct termio main; | |
318 #else | |
319 #ifdef VMS | |
320 struct sensemode main; | |
321 #else | |
9795 | 322 #ifdef DOS_NT |
5499
da0a6ed995bd
[MSDOS]: don't #include <sgtty.h>. We haven't got it.
Richard M. Stallman <rms@gnu.org>
parents:
5132
diff
changeset
|
323 int main; |
9795 | 324 #else /* not DOS_NT */ |
578 | 325 struct sgttyb main; |
9795 | 326 #endif /* not DOS_NT */ |
578 | 327 #endif |
328 #endif | |
5499
da0a6ed995bd
[MSDOS]: don't #include <sgtty.h>. We haven't got it.
Richard M. Stallman <rms@gnu.org>
parents:
5132
diff
changeset
|
329 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
330 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
331 /* 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
|
332 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
|
333 #ifndef HAVE_TERMIOS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
334 #ifdef HAVE_LTCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
335 struct ltchars ltchars; |
578 | 336 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
337 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
338 #ifdef HAVE_TCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
339 struct tchars tchars; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
340 int lmode; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
341 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
342 #endif |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
343 }; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
344 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
345 /* 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
|
346 the macros for reading and setting parts of `struct emacs_tty'. |
578 | 347 |
2658
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
348 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
|
349 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
|
350 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
|
351 #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
|
352 #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp))) |
20349 | 353 #ifdef P_ /* Unfortunately this file is sometimes included before lisp.h */ |
354 extern int emacs_get_tty P_ ((int, struct emacs_tty *)); | |
355 extern int emacs_set_tty P_ ((int, struct emacs_tty *, int)); | |
356 #endif | |
578 | 357 |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
358 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
359 /* Define EMACS_TTY_TABS_OK. */ |
578 | 360 |
361 #ifdef HAVE_TERMIOS | |
362 | |
5968
2c31582df670
(EMACS_TTY_TABS_OK): Alternate definition if no TABDLY.
Richard M. Stallman <rms@gnu.org>
parents:
5499
diff
changeset
|
363 #ifdef TABDLY |
578 | 364 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) |
5968
2c31582df670
(EMACS_TTY_TABS_OK): Alternate definition if no TABDLY.
Richard M. Stallman <rms@gnu.org>
parents:
5499
diff
changeset
|
365 #else |
2c31582df670
(EMACS_TTY_TABS_OK): Alternate definition if no TABDLY.
Richard M. Stallman <rms@gnu.org>
parents:
5499
diff
changeset
|
366 #define EMACS_TTY_TABS_OK(p) 1 |
2c31582df670
(EMACS_TTY_TABS_OK): Alternate definition if no TABDLY.
Richard M. Stallman <rms@gnu.org>
parents:
5499
diff
changeset
|
367 #endif |
578 | 368 |
369 #else /* not def HAVE_TERMIOS */ | |
370 #ifdef HAVE_TERMIO | |
371 | |
372 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
373 | |
374 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ | |
375 #ifdef VMS | |
376 | |
377 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0) | |
378 | |
379 #else | |
380 | |
9795 | 381 #ifdef DOS_NT |
5499
da0a6ed995bd
[MSDOS]: don't #include <sgtty.h>. We haven't got it.
Richard M. Stallman <rms@gnu.org>
parents:
5132
diff
changeset
|
382 #define EMACS_TTY_TABS_OK(p) 0 |
9795 | 383 #else /* not DOS_NT */ |
578 | 384 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) |
9795 | 385 #endif /* not DOS_NT */ |
578 | 386 |
387 #endif /* not def VMS */ | |
388 #endif /* not def HAVE_TERMIO */ | |
389 #endif /* not def HAVE_TERMIOS */ |