=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/window/Attic/main.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/window/Attic/main.c 1995/10/18 08:46:55 1.1 --- src/usr.bin/window/Attic/main.c 1995/12/26 18:00:24 1.2 *************** *** 1,4 **** ! /* $NetBSD: main.c,v 1.4 1995/09/28 10:34:27 tls Exp $ */ /* * Copyright (c) 1983, 1993 --- 1,4 ---- ! /* $NetBSD: main.c,v 1.5 1995/12/21 10:45:28 mycroft Exp $ */ /* * Copyright (c) 1983, 1993 *************** *** 46,52 **** #if 0 static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$NetBSD: main.c,v 1.4 1995/09/28 10:34:27 tls Exp $"; #endif #endif /* not lint */ --- 46,52 ---- #if 0 static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$NetBSD: main.c,v 1.5 1995/12/21 10:45:28 mycroft Exp $"; #endif #endif /* not lint */ *************** *** 155,162 **** if (debug || xflag) (void) wwsettty(0, &wwnewtty); ! if ((cmdwin = wwopen(wwbaud > 2400 ? WWO_REVERSE : 0, 1, wwncol, ! 0, 0, 0)) == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad; --- 155,162 ---- if (debug || xflag) (void) wwsettty(0, &wwnewtty); ! if ((cmdwin = wwopen(WWT_INTERNAL, wwbaud > 2400 ? WWO_REVERSE : 0, 1, ! wwncol, 0, 0, 0)) == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad; *************** *** 165,178 **** cmdwin->ww_nointr = 1; cmdwin->ww_noupdate = 1; cmdwin->ww_unctrl = 1; ! if ((framewin = wwopen(WWO_GLASS|WWO_FRAME, wwnrow, wwncol, 0, 0, 0)) ! == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad; } wwadd(framewin, &wwhead); ! if ((boxwin = wwopen(WWO_GLASS, wwnrow, wwncol, 0, 0, 0)) == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad; --- 165,179 ---- cmdwin->ww_nointr = 1; cmdwin->ww_noupdate = 1; cmdwin->ww_unctrl = 1; ! if ((framewin = wwopen(WWT_INTERNAL, WWO_GLASS|WWO_FRAME, wwnrow, ! wwncol, 0, 0, 0)) == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad; } wwadd(framewin, &wwhead); ! if ((boxwin = wwopen(WWT_INTERNAL, WWO_GLASS, wwnrow, wwncol, 0, 0, 0)) ! == 0) { wwflush(); (void) fprintf(stderr, "%s.\r\n", wwerror()); goto bad;