2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Edward Wang at The University of California, Berkeley.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved.
37 * @(#)main.c 8.2 (Berkeley) 4/2/94
38 * $FreeBSD: src/usr.bin/window/main.c,v 1.5.6.2 2001/05/17 09:45:00 obrien Exp $
39 * $DragonFly: src/usr.bin/window/main.c,v 1.3 2004/08/30 18:06:50 eirikn Exp $
46 #include <string.h> /* System string definitions. */
47 #include "mystring.h" /* Local string definitions. */
51 #define next(a) (*++*(a) ? *(a) : (*++(a) ? *(a) : (char *)usage()))
65 if (p
= strrchr(*argv
, '/'))
69 debug
= strcmp(p
, "a.out") == 0;
78 (void) fprintf(stderr
,
79 "Only one -c allowed.\n");
85 setescape(next(argv
));
105 if ((p
= getenv("SHELL")) == 0)
107 if ((default_shellfile
= str_cpy(p
)) == 0) {
108 (void) fprintf(stderr
, "Out of memory.\n");
111 if (p
= strrchr(default_shellfile
, '/'))
114 p
= default_shellfile
;
115 default_shell
[0] = p
;
116 default_shell
[1] = 0;
117 default_nline
= NLINE
;
119 (void) gettimeofday(&starttime
, (struct timezone
*)0);
120 (void) setlocale(LC_CTYPE
, "");
122 (void) fprintf(stderr
, "%s.\n", wwerror());
128 wwnewtty
.ww_tchars
.t_quitc
= wwoldtty
.ww_tchars
.t_quitc
;
130 wwnewtty
.ww_tchars
.t_stopc
= wwoldtty
.ww_tchars
.t_stopc
;
131 wwnewtty
.ww_tchars
.t_startc
= wwoldtty
.ww_tchars
.t_startc
;
135 wwnewtty
.ww_termios
.c_cc
[VQUIT
] =
136 wwoldtty
.ww_termios
.c_cc
[VQUIT
];
137 wwnewtty
.ww_termios
.c_lflag
|= ISIG
;
140 wwnewtty
.ww_termios
.c_cc
[VSTOP
] =
141 wwoldtty
.ww_termios
.c_cc
[VSTOP
];
142 wwnewtty
.ww_termios
.c_cc
[VSTART
] =
143 wwoldtty
.ww_termios
.c_cc
[VSTART
];
144 wwnewtty
.ww_termios
.c_iflag
|= IXON
;
148 (void) wwsettty(0, &wwnewtty
);
150 if ((cmdwin
= wwopen(wwbaud
> 2400 ? WWO_REVERSE
: 0, 1, wwncol
,
153 (void) fprintf(stderr
, "%s.\r\n", wwerror());
156 cmdwin
->ww_mapnl
= 1;
157 cmdwin
->ww_nointr
= 1;
158 cmdwin
->ww_noupdate
= 1;
159 cmdwin
->ww_unctrl
= 1;
160 if ((framewin
= wwopen(WWO_GLASS
|WWO_FRAME
, wwnrow
, wwncol
, 0, 0, 0))
163 (void) fprintf(stderr
, "%s.\r\n", wwerror());
166 wwadd(framewin
, &wwhead
);
167 if ((boxwin
= wwopen(WWO_GLASS
, wwnrow
, wwncol
, 0, 0, 0)) == 0) {
169 (void) fprintf(stderr
, "%s.\r\n", wwerror());
181 (void) dolongcmd(cmd
, (struct value
*)0, 0);
183 if (dflag
|| doconfig() < 0)
197 (void) fprintf(stderr
, "usage: window [-e escape-char] [-c command] [-t] [-f] [-d]\n");
199 return 0; /* for lint */