Mercurial > emacs
annotate src/systty.h @ 5013:950929c4ae00
(creating src/Makefile): Before running cpp,
discard all lines that start with `# Generated' or /**/#.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 15 Nov 1993 01:26:54 +0000 |
parents | afa76fe24878 |
children | 6a3e9555cee3 |
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> | |
4822
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
117 #define UNISTD_H_INCLUDED |
621 | 118 #endif /* AIX */ |
119 | |
3306
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
120 #ifdef IRIX4 |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
121 /* Get _getpty prototype */ |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
122 #include <unistd.h> |
4822
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
123 #define UNISTD_H_INCLUDED |
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
124 #endif |
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
125 |
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
126 #if defined (POSIX) && !defined (UNISTD_H_INCLUDED) && defined (HAVE_UNISTD_H) |
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
127 #include <unistd.h> |
4876bc32caf2
If POSIX and HAVE_UNISTD_H are defined, and unistd.h hasn't already
Brian Fox <bfox@gnu.org>
parents:
4539
diff
changeset
|
128 #define UNISTD_H_INCLUDED |
3306
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
129 #endif |
6dfbd809ae8c
[IRIX4]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
3269
diff
changeset
|
130 |
621 | 131 #ifdef SYSV_PTYS |
2943
be86b41a0661
* systty.h [SYSV_PTYS]: #include <sys/types.h>. Francesco
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
132 #include <sys/types.h> |
621 | 133 #include <sys/tty.h> |
648 | 134 #ifdef titan |
135 #include <sys/ttyhw.h> | |
136 #include <sys/stream.h> | |
137 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
138 #ifndef NO_PTY_H |
621 | 139 #include <sys/pty.h> |
140 #endif | |
2414
9994dd2e75c9
[NO_PTY_H]: Don't include pty.h.
Richard M. Stallman <rms@gnu.org>
parents:
2264
diff
changeset
|
141 #endif |
621 | 142 |
143 /* saka@pfu.fujitsu.co.JP writes: | |
144 FASYNC defined in this file. But, FASYNC don't working. | |
145 so no problem, because unrequest_sigio only need. */ | |
146 #if defined (pfa) | |
147 #include <sys/file.h> | |
148 #endif | |
149 | |
578 | 150 |
151 /* Special cases - inhibiting the use of certain features. */ | |
152 | |
153 #ifdef APOLLO | |
154 #undef TIOCSTART | |
155 #endif | |
156 | |
648 | 157 #ifdef XENIX |
158 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
159 #endif | |
160 | |
578 | 161 #ifdef BROKEN_TIOCGETC |
162 #undef TIOCGETC /* Avoid confusing some conditionals that test this. */ | |
163 #endif | |
164 | |
165 /* UNIPLUS systems may have FIONREAD. */ | |
166 #ifdef UNIPLUS | |
167 #include <sys.ioctl.h> | |
168 #endif | |
169 | |
170 /* Allow m- file to inhibit use of FIONREAD. */ | |
171 #ifdef BROKEN_FIONREAD | |
172 #undef FIONREAD | |
173 #undef ASYNC | |
174 #endif | |
175 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3557
diff
changeset
|
176 /* Interrupt input is not used if there is no FIONREAD. */ |
578 | 177 #ifndef FIONREAD |
178 #undef SIGIO | |
179 #endif | |
180 | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
181 /* 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
|
182 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
|
183 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
|
184 #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
|
185 #define HAVE_LTCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
186 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
187 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
188 #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
|
189 #define HAVE_TCHARS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
190 #endif |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
191 |
578 | 192 |
1101 | 193 /* Try to establish the correct character to disable terminal functions |
194 in a system-independent manner. Note that USG (at least) define | |
195 _POSIX_VDISABLE as 0! */ | |
196 | |
197 #ifdef _POSIX_VDISABLE | |
198 #define CDISABLE _POSIX_VDISABLE | |
199 #else /* not _POSIX_VDISABLE */ | |
200 #ifdef CDEL | |
3269
3e44fc755c00
* systty.h (CDISABLE): #undef it before re-#defining it.
Jim Blandy <jimb@redhat.com>
parents:
3171
diff
changeset
|
201 #undef CDISABLE |
1101 | 202 #define CDISABLE CDEL |
203 #else /* not CDEL */ | |
204 #define CDISABLE 255 | |
205 #endif /* not CDEL */ | |
206 #endif /* not _POSIX_VDISABLE */ | |
207 | |
578 | 208 /* Get the number of characters queued for output. */ |
209 | |
210 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters | |
211 queued for output to the terminal FD in *SIZE, if FD is a tty. | |
212 Returns -1 if there was an error (i.e. FD is not a tty), 0 | |
213 otherwise. */ | |
214 #ifdef TIOCOUTQ | |
215 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TIOCOUTQ, (size))) | |
216 #endif | |
217 | |
218 #ifdef HAVE_TERMIO | |
219 #ifdef TCOUTQ | |
220 #undef EMACS_OUTQSIZE | |
221 #define EMACS_OUTQSIZE(fd, size) (ioctl ((fd), TCOUTQ, (size))) | |
222 #endif | |
223 #endif | |
224 | |
225 | |
226 /* Manipulate a terminal's current process group. */ | |
227 | |
228 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current | |
229 controlling process group. | |
230 | |
231 EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's | |
232 current process group. Return -1 if there is an error. | |
233 | |
234 EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's | |
235 current process group to *PGID. Return -1 if there is an error. */ | |
236 | |
648 | 237 #ifdef HPUX |
238 /* HPUX tty process group stuff doesn't work, says the anonymous voice | |
239 from the past. */ | |
240 #else | |
578 | 241 #ifdef TIOCGPGRP |
242 #define EMACS_HAVE_TTY_PGRP | |
243 #else | |
244 #ifdef HAVE_TERMIOS | |
245 #define EMACS_HAVE_TTY_PGRP | |
246 #endif | |
247 #endif | |
648 | 248 #endif |
578 | 249 |
250 #ifdef EMACS_HAVE_TTY_PGRP | |
251 | |
252 #ifdef HAVE_TERMIOS | |
253 | |
254 #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
|
255 #define EMACS_SET_TTY_PGRP(fd, pgid) (tcsetpgrp ((fd), *(pgid))) |
578 | 256 |
257 #else | |
258 #ifdef TIOCSPGRP | |
259 | |
260 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid))) | |
261 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid))) | |
262 | |
263 #endif | |
264 #endif | |
265 | |
266 #else | |
267 | |
268 /* Just ignore this for now and hope for the best */ | |
269 #define EMACS_GET_TTY_PGRP(fd, pgid) 0 | |
999 | 270 #define EMACS_SET_TTY_PGRP(fd, pgif) 0 |
578 | 271 |
272 #endif | |
273 | |
4959
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
274 /* EMACS_GETPGRP (arg) returns the process group of the terminal. */ |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
275 |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
276 #if defined (USG) && !defined (GETPGRP_NEEDS_ARG) |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
277 # if !defined (GETPGRP_NO_ARG) |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
278 # define GETPGRP_NO_ARG |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
279 # endif |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
280 #endif |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
281 |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
282 #if defined (GETPGRP_NO_ARG) |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
283 # define EMACS_GETPGRP(x) getpgrp() |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
284 #else |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
285 # define EMACS_GETPGRP(x) getpgrp(x) |
afa76fe24878
(EMACS_GETPGRP): New macro hides argument passing to
Richard M. Stallman <rms@gnu.org>
parents:
4822
diff
changeset
|
286 #endif /* !GETPGRP_NO_ARG */ |
578 | 287 |
288 /* Manipulate a TTY's input/output processing parameters. */ | |
289 | |
290 /* struct emacs_tty is a structure used to hold the current tty | |
291 parameters. If the terminal has several structures describing its | |
292 state, for example a struct tchars, a struct sgttyb, a struct | |
293 tchars, a struct ltchars, and a struct pagechars, struct | |
294 emacs_tty should contain an element for each parameter struct | |
295 that Emacs may change. | |
296 | |
2873
f1cd54cf1b67
* sysdep.c (reset_sys_modes): Test the return value of
Jim Blandy <jimb@redhat.com>
parents:
2658
diff
changeset
|
297 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
|
298 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
|
299 into an error we couldn't deal with. |
578 | 300 |
301 EMACS_SET_TTY (int FD, struct emacs_tty *P, int waitp) | |
302 sets the parameters of the tty on FD according to the contents of | |
303 *P. If waitp is non-zero, we wait for all queued output to be | |
304 written before making the change; otherwise, we forget any queued | |
305 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
|
306 Return 0 if all went well, and -1 if anything failed. |
578 | 307 |
308 EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel | |
309 expands tabs to spaces upon output; in that case, there is no | |
310 advantage to using tabs over spaces. */ | |
311 | |
312 | |
313 /* 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
|
314 - 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
|
315 - 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
|
316 new members. */ |
578 | 317 |
318 struct emacs_tty { | |
319 | |
320 /* There is always one of the following elements, so there is no need | |
321 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
|
322 #ifdef HAVE_TCATTR |
578 | 323 struct termios main; |
324 #else | |
325 #ifdef HAVE_TERMIO | |
326 struct termio main; | |
327 #else | |
328 #ifdef VMS | |
329 struct sensemode main; | |
330 #else | |
331 struct sgttyb main; | |
332 #endif | |
333 #endif | |
334 #endif | |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
335 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
336 /* 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
|
337 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
|
338 #ifndef HAVE_TERMIOS |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
339 #ifdef HAVE_LTCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
340 struct ltchars ltchars; |
578 | 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 |
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
343 #ifdef HAVE_TCHARS |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
344 struct tchars tchars; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
345 int lmode; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
346 #endif |
3157
84825e357019
* systty.h (HAVE_LTCHARS, HAVE_TCHARS): New macros; define them if
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
347 #endif |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
348 }; |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
349 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
350 /* 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
|
351 the macros for reading and setting parts of `struct emacs_tty'. |
578 | 352 |
2658
8be0a57686cb
* systty.h (EMACS_GET_TTY, EMACS_SET_TTY): Move these into
Jim Blandy <jimb@redhat.com>
parents:
2414
diff
changeset
|
353 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
|
354 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
|
355 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
|
356 #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
|
357 #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp))) |
578 | 358 |
2095
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
359 |
139f87bcbaf1
Define HAVE_TCATTR based on HAVE_TERMIOS earlier.
Richard M. Stallman <rms@gnu.org>
parents:
1929
diff
changeset
|
360 /* Define EMACS_TTY_TABS_OK. */ |
578 | 361 |
362 #ifdef HAVE_TERMIOS | |
363 | |
364 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
365 | |
366 #else /* not def HAVE_TERMIOS */ | |
367 #ifdef HAVE_TERMIO | |
368 | |
369 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3) | |
370 | |
371 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */ | |
372 #ifdef VMS | |
373 | |
374 #define EMACS_TTY_TABS_OK(p) (((p)->main.tt_char & TT$M_MECHTAB) != 0) | |
375 | |
376 #else | |
377 | |
378 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS) | |
379 | |
380 #endif /* not def VMS */ | |
381 #endif /* not def HAVE_TERMIO */ | |
382 #endif /* not def HAVE_TERMIOS */ |