Ignore -w flag so can get passed to rlogin
[unix-history] / usr / src / usr.bin / window / tttvi925.c
CommitLineData
9e9fa53f
EW
1#ifndef lint
2static char sccsid[] = "@(#)tttvi925.c 3.1 %G%";
3#endif
4
5#include "ww.h"
6#include "tt.h"
7
8/*
9 * Televideo 925 as emulated by Microterm.
10 *
11 * From David Barto <sdcsvax!celerity!barto>.
12 */
13
14#define G (WWM_GRP << WWC_MSHIFT)
15short tvi925_frame[16] = {
16 ' ', '~'|G, '|'|G, 'c'|G,
17 '~'|G, '~'|G, '`'|G, 'e'|G,
18 '|'|G, 'a'|G, '|'|G, 'g'|G,
19 'b'|G, 'f'|G, 'h'|G, 'd'|G
20};
21
22tt_tvi925()
23{
24
25 if (tt_generic() < 0)
26 return -1;
27 tt.tt_availmodes |= WWM_GRP;
28 tt.tt_frame = tvi925_frame;
29 return 0;
30}