Mercurial > emacs
annotate src/termcap.c @ 51400:6b26c71e351d
Use HAVE_FCNTL_H, not _POSIX_VERSION.
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Mon, 02 Jun 2003 18:42:13 +0000 |
| parents | 01b93e5e53a7 |
| children | 695cf19ef79e |
| rev | line source |
|---|---|
| 7306 | 1 /* Work-alike for termcap, plus extra features. |
| 37914 | 2 Copyright (C) 1985, 86, 93, 94, 95, 2000, 2001 |
| 3 Free Software Foundation, Inc. | |
| 7306 | 4 |
| 5 This program is free software; you can redistribute it and/or modify | |
| 6 it under the terms of the GNU General Public License as published by | |
| 7 the Free Software Foundation; either version 2, or (at your option) | |
| 8 any later version. | |
| 9 | |
| 10 This program is distributed in the hope that it will be useful, | |
| 11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 GNU General Public License for more details. | |
| 14 | |
| 15 You should have received a copy of the GNU General Public License | |
| 16 along with this program; see the file COPYING. If not, write to | |
| 14414 | 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 18 Boston, MA 02111-1307, USA. */ | |
| 7306 | 19 |
| 20 /* Emacs config.h may rename various library functions such as malloc. */ | |
| 21 #ifdef HAVE_CONFIG_H | |
|
12994
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
22 #include <config.h> |
|
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
23 #endif |
| 7785 | 24 |
|
12994
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
25 #ifdef emacs |
| 7785 | 26 |
|
29804
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
27 #include <lisp.h> /* xmalloc is here */ |
| 7785 | 28 /* Get the O_* definitions for open et al. */ |
| 29 #include <sys/file.h> | |
|
29804
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
30 #ifdef HAVE_FCNTL_H |
| 7785 | 31 #include <fcntl.h> |
| 32 #endif | |
|
29804
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
33 #ifdef HAVE_UNISTD_H |
|
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
34 #include <unistd.h> |
|
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
35 #endif |
| 7785 | 36 |
|
12994
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
37 #else /* not emacs */ |
| 7306 | 38 |
| 39 #ifdef STDC_HEADERS | |
| 40 #include <stdlib.h> | |
| 41 #include <string.h> | |
| 42 #else | |
| 43 char *getenv (); | |
| 44 char *malloc (); | |
| 45 char *realloc (); | |
| 46 #endif | |
| 47 | |
|
12675
8c9369149a9d
Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents:
11264
diff
changeset
|
48 /* Do this after the include, in case string.h prototypes bcopy. */ |
|
8c9369149a9d
Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents:
11264
diff
changeset
|
49 #if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy) |
|
8c9369149a9d
Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents:
11264
diff
changeset
|
50 #define bcopy(s, d, n) memcpy ((d), (s), (n)) |
|
8c9369149a9d
Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents:
11264
diff
changeset
|
51 #endif |
|
8c9369149a9d
Move #define of bcopy to after #include <string.h>.
David J. MacKenzie <djm@gnu.org>
parents:
11264
diff
changeset
|
52 |
| 7306 | 53 #ifdef HAVE_UNISTD_H |
| 54 #include <unistd.h> | |
| 55 #endif | |
|
51400
6b26c71e351d
Use HAVE_FCNTL_H, not _POSIX_VERSION.
Dave Love <fx@gnu.org>
parents:
44890
diff
changeset
|
56 #ifdef HAVE_FCNTL_H |
| 7306 | 57 #include <fcntl.h> |
| 58 #endif | |
| 59 | |
|
12994
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
60 #endif /* not emacs */ |
| 7306 | 61 |
| 62 #ifndef NULL | |
| 63 #define NULL (char *) 0 | |
| 64 #endif | |
| 65 | |
| 7685 | 66 #ifndef O_RDONLY |
| 67 #define O_RDONLY 0 | |
| 68 #endif | |
| 69 | |
| 7306 | 70 /* BUFSIZE is the initial size allocated for the buffer |
| 71 for reading the termcap file. | |
| 72 It is not a limit. | |
| 73 Make it large normally for speed. | |
| 74 Make it variable when debugging, so can exercise | |
| 75 increasing the space dynamically. */ | |
| 76 | |
| 77 #ifndef BUFSIZE | |
| 78 #ifdef DEBUG | |
| 79 #define BUFSIZE bufsize | |
| 80 | |
| 81 int bufsize = 128; | |
| 82 #else | |
| 83 #define BUFSIZE 2048 | |
| 84 #endif | |
| 85 #endif | |
| 86 | |
|
12679
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
87 #ifndef TERMCAP_FILE |
|
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
88 #define TERMCAP_FILE "/etc/termcap" |
| 7306 | 89 #endif |
| 90 | |
| 91 #ifndef emacs | |
| 92 static void | |
| 93 memory_out () | |
| 94 { | |
| 95 write (2, "virtual memory exhausted\n", 25); | |
| 96 exit (1); | |
| 97 } | |
| 98 | |
| 99 static char * | |
| 100 xmalloc (size) | |
| 101 unsigned size; | |
| 102 { | |
| 103 register char *tem = malloc (size); | |
| 104 | |
| 105 if (!tem) | |
| 106 memory_out (); | |
| 107 return tem; | |
| 108 } | |
| 109 | |
| 110 static char * | |
| 111 xrealloc (ptr, size) | |
| 112 char *ptr; | |
| 113 unsigned size; | |
| 114 { | |
| 115 register char *tem = realloc (ptr, size); | |
| 116 | |
| 117 if (!tem) | |
| 118 memory_out (); | |
| 119 return tem; | |
| 120 } | |
| 121 #endif /* not emacs */ | |
| 122 | |
| 123 /* Looking up capabilities in the entry already found. */ | |
| 124 | |
| 125 /* The pointer to the data made by tgetent is left here | |
| 126 for tgetnum, tgetflag and tgetstr to find. */ | |
| 127 static char *term_entry; | |
| 128 | |
| 129 static char *tgetst1 (); | |
| 130 | |
| 131 /* Search entry BP for capability CAP. | |
| 132 Return a pointer to the capability (in BP) if found, | |
| 133 0 if not found. */ | |
| 134 | |
| 135 static char * | |
| 136 find_capability (bp, cap) | |
| 137 register char *bp, *cap; | |
| 138 { | |
| 139 for (; *bp; bp++) | |
| 140 if (bp[0] == ':' | |
| 141 && bp[1] == cap[0] | |
| 142 && bp[2] == cap[1]) | |
| 143 return &bp[4]; | |
| 144 return NULL; | |
| 145 } | |
| 146 | |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
147 /* These are already defined in the System framework in Mac OS X and |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
148 cause prebinding to fail. */ |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
149 #ifndef MAC_OSX |
| 7306 | 150 int |
| 151 tgetnum (cap) | |
| 152 char *cap; | |
| 153 { | |
| 154 register char *ptr = find_capability (term_entry, cap); | |
| 155 if (!ptr || ptr[-1] != '#') | |
| 156 return -1; | |
| 157 return atoi (ptr); | |
| 158 } | |
| 159 | |
| 160 int | |
| 161 tgetflag (cap) | |
| 162 char *cap; | |
| 163 { | |
| 164 register char *ptr = find_capability (term_entry, cap); | |
| 165 return ptr && ptr[-1] == ':'; | |
| 166 } | |
| 167 | |
| 168 /* Look up a string-valued capability CAP. | |
| 169 If AREA is non-null, it points to a pointer to a block in which | |
| 170 to store the string. That pointer is advanced over the space used. | |
| 171 If AREA is null, space is allocated with `malloc'. */ | |
| 172 | |
| 173 char * | |
| 174 tgetstr (cap, area) | |
| 175 char *cap; | |
| 176 char **area; | |
| 177 { | |
| 178 register char *ptr = find_capability (term_entry, cap); | |
| 179 if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~')) | |
| 180 return NULL; | |
| 181 return tgetst1 (ptr, area); | |
| 182 } | |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
183 #endif /* MAC_OSX */ |
| 7306 | 184 |
|
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
185 #ifdef IS_EBCDIC_HOST |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
186 /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted, |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
187 gives meaning of character following \, or a space if no special meaning. |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
188 Sixteen characters per line within the string. */ |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
189 |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
190 static char esctab[] |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
191 = " \057\026 \047\014 \ |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
192 \025 \015 \ |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
193 \005 \013 \ |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
194 "; |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
195 #else |
| 7306 | 196 /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted, |
| 197 gives meaning of character following \, or a space if no special meaning. | |
| 198 Eight characters per line within the string. */ | |
| 199 | |
| 200 static char esctab[] | |
| 201 = " \007\010 \033\014 \ | |
| 202 \012 \ | |
| 203 \015 \011 \013 \ | |
| 204 "; | |
|
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
205 #endif |
| 7306 | 206 |
| 207 /* PTR points to a string value inside a termcap entry. | |
| 208 Copy that value, processing \ and ^ abbreviations, | |
| 209 into the block that *AREA points to, | |
| 210 or to newly allocated storage if AREA is NULL. | |
| 211 Return the address to which we copied the value, | |
| 212 or NULL if PTR is NULL. */ | |
| 213 | |
| 214 static char * | |
| 215 tgetst1 (ptr, area) | |
| 216 char *ptr; | |
| 217 char **area; | |
| 218 { | |
| 219 register char *p, *r; | |
| 220 register int c; | |
| 221 register int size; | |
| 222 char *ret; | |
| 223 register int c1; | |
| 224 | |
| 225 if (!ptr) | |
| 226 return NULL; | |
| 227 | |
| 228 /* `ret' gets address of where to store the string. */ | |
| 229 if (!area) | |
| 230 { | |
| 231 /* Compute size of block needed (may overestimate). */ | |
| 232 p = ptr; | |
| 233 while ((c = *p++) && c != ':' && c != '\n') | |
| 234 ; | |
| 235 ret = (char *) xmalloc (p - ptr + 1); | |
| 236 } | |
| 237 else | |
| 238 ret = *area; | |
| 239 | |
| 240 /* Copy the string value, stopping at null or colon. | |
| 241 Also process ^ and \ abbreviations. */ | |
| 242 p = ptr; | |
| 243 r = ret; | |
| 244 while ((c = *p++) && c != ':' && c != '\n') | |
| 245 { | |
| 246 if (c == '^') | |
|
10186
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
247 { |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
248 c = *p++; |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
249 if (c == '?') |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
250 c = 0177; |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
251 else |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
252 c &= 037; |
|
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
253 } |
| 7306 | 254 else if (c == '\\') |
| 255 { | |
| 256 c = *p++; | |
| 257 if (c >= '0' && c <= '7') | |
| 258 { | |
| 259 c -= '0'; | |
| 260 size = 0; | |
| 261 | |
| 262 while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7') | |
| 263 { | |
| 264 c *= 8; | |
| 265 c += c1 - '0'; | |
| 266 p++; | |
| 267 } | |
| 268 } | |
|
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
269 #ifdef IS_EBCDIC_HOST |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
270 else if (c >= 0200 && c < 0360) |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
271 { |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
272 c1 = esctab[(c & ~0100) - 0200]; |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
273 if (c1 != ' ') |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
274 c = c1; |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
275 } |
|
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
276 #else |
| 7306 | 277 else if (c >= 0100 && c < 0200) |
| 278 { | |
| 279 c1 = esctab[(c & ~040) - 0100]; | |
| 280 if (c1 != ' ') | |
| 281 c = c1; | |
| 282 } | |
|
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
283 #endif |
| 7306 | 284 } |
| 285 *r++ = c; | |
| 286 } | |
| 287 *r = '\0'; | |
| 288 /* Update *AREA. */ | |
| 289 if (area) | |
| 290 *area = r + 1; | |
| 291 return ret; | |
| 292 } | |
| 293 | |
| 294 /* Outputting a string with padding. */ | |
| 295 | |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
296 #ifndef emacs |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
297 short ospeed; |
| 7306 | 298 /* If OSPEED is 0, we use this as the actual baud rate. */ |
| 299 int tputs_baud_rate; | |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
300 #endif |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
301 |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
302 /* Already defined in the System framework in Mac OS X and causes |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
303 prebinding to fail. */ |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
304 #ifndef MAC_OSX |
| 7306 | 305 char PC; |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
306 #endif /* MAC_OSX */ |
| 7306 | 307 |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
308 #ifndef emacs |
| 7306 | 309 /* Actual baud rate if positive; |
| 310 - baud rate / 100 if negative. */ | |
| 311 | |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
312 static int speeds[] = |
| 7306 | 313 { |
| 314 #ifdef VMS | |
| 315 0, 50, 75, 110, 134, 150, -3, -6, -12, -18, | |
| 316 -20, -24, -36, -48, -72, -96, -192 | |
| 317 #else /* not VMS */ | |
| 318 0, 50, 75, 110, 135, 150, -2, -3, -6, -12, | |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
319 -18, -24, -48, -96, -192, -288, -384, -576, -1152 |
| 7306 | 320 #endif /* not VMS */ |
| 321 }; | |
| 322 | |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
323 #endif /* not emacs */ |
| 37914 | 324 |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
325 /* Already defined in the System framework in Mac OS X and causes |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
326 prebinding to fail. */ |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
327 #ifndef MAC_OSX |
| 7306 | 328 void |
| 329 tputs (str, nlines, outfun) | |
| 330 register char *str; | |
| 331 int nlines; | |
| 332 register int (*outfun) (); | |
| 333 { | |
| 334 register int padcount = 0; | |
| 335 register int speed; | |
| 336 | |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
337 #ifdef emacs |
|
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43674
diff
changeset
|
338 extern EMACS_INT baud_rate; |
| 7306 | 339 speed = baud_rate; |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
340 /* For quite high speeds, convert to the smaller |
|
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
341 units to avoid overflow. */ |
|
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
342 if (speed > 10000) |
|
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
343 speed = - speed / 100; |
|
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
344 #else |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
345 if (ospeed == 0) |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
346 speed = tputs_baud_rate; |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
347 else |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
348 speed = speeds[ospeed]; |
|
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37914
diff
changeset
|
349 #endif |
| 7306 | 350 |
| 351 if (!str) | |
| 352 return; | |
| 353 | |
| 354 while (*str >= '0' && *str <= '9') | |
| 355 { | |
| 356 padcount += *str++ - '0'; | |
| 357 padcount *= 10; | |
| 358 } | |
| 359 if (*str == '.') | |
| 360 { | |
| 361 str++; | |
| 362 padcount += *str++ - '0'; | |
| 363 } | |
| 364 if (*str == '*') | |
| 365 { | |
| 366 str++; | |
| 367 padcount *= nlines; | |
| 368 } | |
| 369 while (*str) | |
| 370 (*outfun) (*str++); | |
| 371 | |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
372 /* PADCOUNT is now in units of tenths of msec. |
| 10753 | 373 SPEED is measured in characters per 10 seconds |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
374 or in characters per .1 seconds (if negative). |
|
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
375 We use the smaller units for larger speeds to avoid overflow. */ |
|
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
376 padcount *= speed; |
| 7306 | 377 padcount += 500; |
| 378 padcount /= 1000; | |
|
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
379 if (speed < 0) |
| 7306 | 380 padcount = -padcount; |
| 381 else | |
| 382 { | |
| 383 padcount += 50; | |
| 384 padcount /= 100; | |
| 385 } | |
| 386 | |
| 387 while (padcount-- > 0) | |
| 388 (*outfun) (PC); | |
| 389 } | |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
390 #endif /* MAC_OSX */ |
| 7306 | 391 |
| 392 /* Finding the termcap entry in the termcap data base. */ | |
| 393 | |
|
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
394 struct termcap_buffer |
| 7306 | 395 { |
| 396 char *beg; | |
| 397 int size; | |
| 398 char *ptr; | |
| 399 int ateof; | |
| 400 int full; | |
| 401 }; | |
| 402 | |
| 403 /* Forward declarations of static functions. */ | |
| 404 | |
| 405 static int scan_file (); | |
| 406 static char *gobble_line (); | |
| 407 static int compare_contin (); | |
| 408 static int name_match (); | |
| 409 | |
| 410 #ifdef VMS | |
| 411 | |
| 412 #include <rmsdef.h> | |
| 413 #include <fab.h> | |
| 414 #include <nam.h> | |
| 415 | |
| 416 static int | |
| 417 valid_filename_p (fn) | |
| 418 char *fn; | |
| 419 { | |
| 420 struct FAB fab = cc$rms_fab; | |
| 421 struct NAM nam = cc$rms_nam; | |
| 422 char esa[NAM$C_MAXRSS]; | |
| 423 | |
| 424 fab.fab$l_fna = fn; | |
| 425 fab.fab$b_fns = strlen(fn); | |
| 426 fab.fab$l_nam = &nam; | |
| 427 fab.fab$l_fop = FAB$M_NAM; | |
| 428 | |
| 429 nam.nam$l_esa = esa; | |
| 430 nam.nam$b_ess = sizeof esa; | |
| 431 | |
| 432 return SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL; | |
| 433 } | |
| 434 | |
| 435 #else /* !VMS */ | |
| 436 | |
| 437 #ifdef MSDOS /* MW, May 1993 */ | |
| 438 static int | |
| 439 valid_filename_p (fn) | |
| 440 char *fn; | |
| 441 { | |
| 442 return *fn == '/' || fn[1] == ':'; | |
| 443 } | |
| 444 #else | |
| 445 #define valid_filename_p(fn) (*(fn) == '/') | |
| 446 #endif | |
| 447 | |
| 448 #endif /* !VMS */ | |
| 449 | |
| 450 /* Find the termcap entry data for terminal type NAME | |
| 451 and store it in the block that BP points to. | |
| 452 Record its address for future use. | |
| 453 | |
| 454 If BP is null, space is dynamically allocated. | |
| 455 | |
| 456 Return -1 if there is some difficulty accessing the data base | |
| 457 of terminal types, | |
| 458 0 if the data base is accessible but the type NAME is not defined | |
| 459 in it, and some other value otherwise. */ | |
| 460 | |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
461 /* Already defined in the System framework in Mac OS X and causes |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
462 prebinding to fail. */ |
|
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
463 #ifndef MAC_OSX |
| 7306 | 464 int |
| 465 tgetent (bp, name) | |
| 466 char *bp, *name; | |
| 467 { | |
| 468 register char *termcap_name; | |
| 469 register int fd; | |
|
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
470 struct termcap_buffer buf; |
| 7306 | 471 register char *bp1; |
|
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
472 char *tc_search_point; |
| 7306 | 473 char *term; |
| 474 int malloc_size = 0; | |
| 475 register int c; | |
| 33616 | 476 char *tcenv = NULL; /* TERMCAP value, if it contains :tc=. */ |
| 7306 | 477 char *indirect = NULL; /* Terminal type in :tc= in TERMCAP value. */ |
| 478 int filep; | |
| 479 | |
| 480 #ifdef INTERNAL_TERMINAL | |
| 481 /* For the internal terminal we don't want to read any termcap file, | |
| 482 so fake it. */ | |
| 483 if (!strcmp (name, "internal")) | |
| 484 { | |
| 485 term = INTERNAL_TERMINAL; | |
| 486 if (!bp) | |
| 487 { | |
| 488 malloc_size = 1 + strlen (term); | |
| 489 bp = (char *) xmalloc (malloc_size); | |
| 490 } | |
| 491 strcpy (bp, term); | |
| 492 goto ret; | |
| 493 } | |
| 494 #endif /* INTERNAL_TERMINAL */ | |
| 495 | |
|
12907
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
496 /* For compatibility with programs like `less' that want to |
|
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
497 put data in the termcap buffer themselves as a fallback. */ |
|
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
498 if (bp) |
|
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
499 term_entry = bp; |
|
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
500 |
| 7306 | 501 termcap_name = getenv ("TERMCAP"); |
| 502 if (termcap_name && *termcap_name == '\0') | |
| 503 termcap_name = NULL; | |
| 504 #if defined (MSDOS) && !defined (TEST) | |
| 505 if (termcap_name && (*termcap_name == '\\' | |
| 506 || *termcap_name == '/' | |
| 507 || termcap_name[1] == ':')) | |
| 508 dostounix_filename(termcap_name); | |
| 509 #endif | |
| 510 | |
| 511 filep = termcap_name && valid_filename_p (termcap_name); | |
| 512 | |
| 513 /* If termcap_name is non-null and starts with / (in the un*x case, that is), | |
| 514 it is a file name to use instead of /etc/termcap. | |
| 515 If it is non-null and does not start with /, | |
| 516 it is the entry itself, but only if | |
| 517 the name the caller requested matches the TERM variable. */ | |
| 518 | |
| 519 if (termcap_name && !filep && !strcmp (name, getenv ("TERM"))) | |
| 520 { | |
| 521 indirect = tgetst1 (find_capability (termcap_name, "tc"), (char **) 0); | |
| 522 if (!indirect) | |
| 523 { | |
| 524 if (!bp) | |
| 525 bp = termcap_name; | |
| 526 else | |
| 527 strcpy (bp, termcap_name); | |
| 528 goto ret; | |
| 529 } | |
| 530 else | |
| 531 { /* It has tc=. Need to read /etc/termcap. */ | |
| 532 tcenv = termcap_name; | |
| 533 termcap_name = NULL; | |
| 534 } | |
| 535 } | |
| 536 | |
| 537 if (!termcap_name || !filep) | |
|
12679
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
538 termcap_name = TERMCAP_FILE; |
| 7306 | 539 |
| 540 /* Here we know we must search a file and termcap_name has its name. */ | |
| 541 | |
| 542 #ifdef MSDOS | |
| 7685 | 543 fd = open (termcap_name, O_RDONLY|O_TEXT, 0); |
| 7306 | 544 #else |
| 7685 | 545 fd = open (termcap_name, O_RDONLY, 0); |
| 7306 | 546 #endif |
| 547 if (fd < 0) | |
| 548 return -1; | |
| 549 | |
| 550 buf.size = BUFSIZE; | |
| 551 /* Add 1 to size to ensure room for terminating null. */ | |
| 552 buf.beg = (char *) xmalloc (buf.size + 1); | |
| 553 term = indirect ? indirect : name; | |
| 554 | |
| 555 if (!bp) | |
| 556 { | |
| 557 malloc_size = indirect ? strlen (tcenv) + 1 : buf.size; | |
| 558 bp = (char *) xmalloc (malloc_size); | |
| 559 } | |
|
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
560 tc_search_point = bp1 = bp; |
| 7306 | 561 |
| 562 if (indirect) | |
| 563 /* Copy the data from the environment variable. */ | |
| 564 { | |
| 565 strcpy (bp, tcenv); | |
| 566 bp1 += strlen (tcenv); | |
| 567 } | |
| 568 | |
| 569 while (term) | |
| 570 { | |
| 571 /* Scan the file, reading it via buf, till find start of main entry. */ | |
| 572 if (scan_file (term, fd, &buf) == 0) | |
| 573 { | |
| 574 close (fd); | |
| 575 free (buf.beg); | |
| 576 if (malloc_size) | |
| 577 free (bp); | |
| 578 return 0; | |
| 579 } | |
| 580 | |
| 581 /* Free old `term' if appropriate. */ | |
| 582 if (term != name) | |
| 583 free (term); | |
| 584 | |
| 585 /* If BP is malloc'd by us, make sure it is big enough. */ | |
| 586 if (malloc_size) | |
| 587 { | |
|
34358
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
588 int offset1 = bp1 - bp, offset2 = tc_search_point - bp; |
|
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
589 malloc_size = offset1 + buf.size; |
|
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
590 bp = termcap_name = (char *) xrealloc (bp, malloc_size); |
|
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
591 bp1 = termcap_name + offset1; |
|
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
592 tc_search_point = termcap_name + offset2; |
| 7306 | 593 } |
| 594 | |
| 595 /* Copy the line of the entry from buf into bp. */ | |
| 596 termcap_name = buf.ptr; | |
| 597 while ((*bp1++ = c = *termcap_name++) && c != '\n') | |
| 598 /* Drop out any \ newline sequence. */ | |
| 599 if (c == '\\' && *termcap_name == '\n') | |
| 600 { | |
| 601 bp1--; | |
| 602 termcap_name++; | |
| 603 } | |
| 604 *bp1 = '\0'; | |
| 605 | |
| 606 /* Does this entry refer to another terminal type's entry? | |
| 607 If something is found, copy it into heap and null-terminate it. */ | |
|
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
608 tc_search_point = find_capability (tc_search_point, "tc"); |
|
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
609 term = tgetst1 (tc_search_point, (char **) 0); |
| 7306 | 610 } |
| 611 | |
| 612 close (fd); | |
| 613 free (buf.beg); | |
| 614 | |
| 615 if (malloc_size) | |
| 616 bp = (char *) xrealloc (bp, bp1 - bp + 1); | |
| 617 | |
| 618 ret: | |
| 619 term_entry = bp; | |
| 620 return 1; | |
| 621 } | |
|
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
622 #endif /* MAC_OSX */ |
| 7306 | 623 |
| 624 /* Given file open on FD and buffer BUFP, | |
| 625 scan the file from the beginning until a line is found | |
| 626 that starts the entry for terminal type STR. | |
| 627 Return 1 if successful, with that line in BUFP, | |
| 628 or 0 if no entry is found in the file. */ | |
| 629 | |
| 630 static int | |
| 631 scan_file (str, fd, bufp) | |
| 632 char *str; | |
| 633 int fd; | |
|
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
634 register struct termcap_buffer *bufp; |
| 7306 | 635 { |
| 636 register char *end; | |
| 637 | |
| 638 bufp->ptr = bufp->beg; | |
| 639 bufp->full = 0; | |
| 640 bufp->ateof = 0; | |
| 641 *bufp->ptr = '\0'; | |
| 642 | |
| 643 lseek (fd, 0L, 0); | |
| 644 | |
| 645 while (!bufp->ateof) | |
| 646 { | |
| 647 /* Read a line into the buffer. */ | |
| 648 end = NULL; | |
| 649 do | |
| 650 { | |
| 651 /* if it is continued, append another line to it, | |
| 652 until a non-continued line ends. */ | |
| 653 end = gobble_line (fd, bufp, end); | |
| 654 } | |
| 655 while (!bufp->ateof && end[-2] == '\\'); | |
| 656 | |
| 657 if (*bufp->ptr != '#' | |
| 658 && name_match (bufp->ptr, str)) | |
| 659 return 1; | |
| 660 | |
| 661 /* Discard the line just processed. */ | |
| 662 bufp->ptr = end; | |
| 663 } | |
| 664 return 0; | |
| 665 } | |
| 666 | |
| 667 /* Return nonzero if NAME is one of the names specified | |
| 668 by termcap entry LINE. */ | |
| 669 | |
| 670 static int | |
| 671 name_match (line, name) | |
| 672 char *line, *name; | |
| 673 { | |
| 674 register char *tem; | |
| 675 | |
| 676 if (!compare_contin (line, name)) | |
| 677 return 1; | |
| 678 /* This line starts an entry. Is it the right one? */ | |
| 679 for (tem = line; *tem && *tem != '\n' && *tem != ':'; tem++) | |
| 680 if (*tem == '|' && !compare_contin (tem + 1, name)) | |
| 681 return 1; | |
| 682 | |
| 683 return 0; | |
| 684 } | |
| 685 | |
| 686 static int | |
| 687 compare_contin (str1, str2) | |
| 688 register char *str1, *str2; | |
| 689 { | |
| 690 register int c1, c2; | |
| 691 while (1) | |
| 692 { | |
| 693 c1 = *str1++; | |
| 694 c2 = *str2++; | |
| 695 while (c1 == '\\' && *str1 == '\n') | |
| 696 { | |
| 697 str1++; | |
| 698 while ((c1 = *str1++) == ' ' || c1 == '\t'); | |
| 699 } | |
| 700 if (c2 == '\0') | |
| 701 { | |
| 702 /* End of type being looked up. */ | |
| 703 if (c1 == '|' || c1 == ':') | |
| 704 /* If end of name in data base, we win. */ | |
| 705 return 0; | |
| 706 else | |
| 707 return 1; | |
| 708 } | |
| 709 else if (c1 != c2) | |
| 710 return 1; | |
| 711 } | |
| 712 } | |
| 713 | |
| 714 /* Make sure that the buffer <- BUFP contains a full line | |
| 715 of the file open on FD, starting at the place BUFP->ptr | |
| 716 points to. Can read more of the file, discard stuff before | |
| 717 BUFP->ptr, or make the buffer bigger. | |
| 718 | |
| 719 Return the pointer to after the newline ending the line, | |
| 720 or to the end of the file, if there is no newline to end it. | |
| 721 | |
| 722 Can also merge on continuation lines. If APPEND_END is | |
| 723 non-null, it points past the newline of a line that is | |
| 724 continued; we add another line onto it and regard the whole | |
| 725 thing as one line. The caller decides when a line is continued. */ | |
| 726 | |
| 727 static char * | |
| 728 gobble_line (fd, bufp, append_end) | |
| 729 int fd; | |
|
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
730 register struct termcap_buffer *bufp; |
| 7306 | 731 char *append_end; |
| 732 { | |
| 733 register char *end; | |
| 734 register int nread; | |
| 735 register char *buf = bufp->beg; | |
| 736 register char *tem; | |
| 737 | |
| 738 if (!append_end) | |
| 739 append_end = bufp->ptr; | |
| 740 | |
| 741 while (1) | |
| 742 { | |
| 743 end = append_end; | |
| 744 while (*end && *end != '\n') end++; | |
| 745 if (*end) | |
| 746 break; | |
| 747 if (bufp->ateof) | |
| 748 return buf + bufp->full; | |
| 749 if (bufp->ptr == buf) | |
| 750 { | |
| 751 if (bufp->full == bufp->size) | |
| 752 { | |
| 753 bufp->size *= 2; | |
| 754 /* Add 1 to size to ensure room for terminating null. */ | |
| 755 tem = (char *) xrealloc (buf, bufp->size + 1); | |
| 756 bufp->ptr = (bufp->ptr - buf) + tem; | |
| 757 append_end = (append_end - buf) + tem; | |
| 758 bufp->beg = buf = tem; | |
| 759 } | |
| 760 } | |
| 761 else | |
| 762 { | |
| 763 append_end -= bufp->ptr - buf; | |
| 764 bcopy (bufp->ptr, buf, bufp->full -= bufp->ptr - buf); | |
| 765 bufp->ptr = buf; | |
| 766 } | |
| 767 if (!(nread = read (fd, buf + bufp->full, bufp->size - bufp->full))) | |
| 768 bufp->ateof = 1; | |
| 769 bufp->full += nread; | |
| 770 buf[bufp->full] = '\0'; | |
| 771 } | |
| 772 return end + 1; | |
| 773 } | |
| 774 | |
| 775 #ifdef TEST | |
| 776 | |
| 777 #ifdef NULL | |
| 778 #undef NULL | |
| 779 #endif | |
| 780 | |
| 781 #include <stdio.h> | |
| 782 | |
| 783 main (argc, argv) | |
| 784 int argc; | |
| 785 char **argv; | |
| 786 { | |
| 787 char *term; | |
| 788 char *buf; | |
| 789 | |
| 790 term = argv[1]; | |
| 791 printf ("TERM: %s\n", term); | |
| 792 | |
| 793 buf = (char *) tgetent (0, term); | |
| 794 if ((int) buf <= 0) | |
| 795 { | |
| 796 printf ("No entry.\n"); | |
| 797 return 0; | |
| 798 } | |
| 799 | |
| 800 printf ("Entry: %s\n", buf); | |
| 801 | |
| 802 tprint ("cm"); | |
| 803 tprint ("AL"); | |
| 804 | |
| 805 printf ("co: %d\n", tgetnum ("co")); | |
| 806 printf ("am: %d\n", tgetflag ("am")); | |
| 807 } | |
| 808 | |
| 809 tprint (cap) | |
| 810 char *cap; | |
| 811 { | |
| 812 char *x = tgetstr (cap, 0); | |
| 813 register char *y; | |
| 814 | |
| 815 printf ("%s: ", cap); | |
| 816 if (x) | |
| 817 { | |
| 818 for (y = x; *y; y++) | |
| 819 if (*y <= ' ' || *y == 0177) | |
| 820 printf ("\\%0o", *y); | |
| 821 else | |
| 822 putchar (*y); | |
| 823 free (x); | |
| 824 } | |
| 825 else | |
| 826 printf ("none"); | |
| 827 putchar ('\n'); | |
| 828 } | |
| 829 | |
| 830 #endif /* TEST */ |
