diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-15 05:22:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-15 05:22:15 +0000 |
commit | eca4b7c7cae34bc02a5b3f67795bcffa97e9aae5 (patch) | |
tree | b2055c4ec5659f7ed7dd6a01cfc9797bf10faa79 /usr.bin/window/cmd6.c | |
parent | eebf512f9ccf68c32dd3357d8b220432728968c3 (diff) |
Modify to build with ncurses, not ocurses. A proper port to terminfo
is probably not worth the effort.
Diffstat (limited to 'usr.bin/window/cmd6.c')
-rw-r--r-- | usr.bin/window/cmd6.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/window/cmd6.c b/usr.bin/window/cmd6.c index 4198f5dd9a5..6902a71464e 100644 --- a/usr.bin/window/cmd6.c +++ b/usr.bin/window/cmd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd6.c,v 1.3 1997/02/25 00:04:00 downsj Exp $ */ +/* $OpenBSD: cmd6.c,v 1.4 2000/04/15 05:22:14 millert Exp $ */ /* $NetBSD: cmd6.c,v 1.3 1995/09/28 10:34:10 tls Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)cmd6.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: cmd6.c,v 1.3 1997/02/25 00:04:00 downsj Exp $"; +static char rcsid[] = "$OpenBSD: cmd6.c,v 1.4 2000/04/15 05:22:14 millert Exp $"; #endif #endif /* not lint */ @@ -78,11 +78,11 @@ c_debug() debug_str(); break; case 'v': - if ((w = getwin()) != 0) + if ((w = getwindow()) != 0) wwdumpnvis(w); break; case 'w': - if ((w = getwin()) != 0) + if ((w = getwindow()) != 0) wwdumpwin(w); break; default: |