summaryrefslogtreecommitdiff
path: root/usr.bin/talk/init_disp.c
diff options
context:
space:
mode:
authorOleg Safiullin <form@cvs.openbsd.org>2002-06-20 10:18:30 +0000
committerOleg Safiullin <form@cvs.openbsd.org>2002-06-20 10:18:30 +0000
commit688af4b0a0f28c726e3230c122554bf962e69f62 (patch)
tree0ff6f3166014037b9dc462c673bd08da8a071a84 /usr.bin/talk/init_disp.c
parent60e6f382b33f55c9ea446efb9dee10e7d6848b51 (diff)
undo last commit; deraadt@
Diffstat (limited to 'usr.bin/talk/init_disp.c')
-rw-r--r--usr.bin/talk/init_disp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/talk/init_disp.c b/usr.bin/talk/init_disp.c
index c4c1c4e71e9..c3f3f16f7ba 100644
--- a/usr.bin/talk/init_disp.c
+++ b/usr.bin/talk/init_disp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init_disp.c,v 1.12 2002/06/20 06:13:56 form Exp $ */
+/* $OpenBSD: init_disp.c,v 1.13 2002/06/20 10:18:29 form Exp $ */
/* $NetBSD: init_disp.c,v 1.6 1994/12/09 02:14:17 jtc Exp $ */
/*
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)init_disp.c 8.2 (Berkeley) 2/16/94";
#endif
-static char rcsid[] = "$OpenBSD: init_disp.c,v 1.12 2002/06/20 06:13:56 form Exp $";
+static char rcsid[] = "$OpenBSD: init_disp.c,v 1.13 2002/06/20 10:18:29 form Exp $";
#endif /* not lint */
/*
@@ -79,14 +79,14 @@ init_display()
my_win.x_nlines = LINES / 2;
my_win.x_ncols = COLS;
my_win.x_win = newwin(my_win.x_nlines, my_win.x_ncols, 0, 0);
- scrollok(my_win.x_win, TRUE);
+ scrollok(my_win.x_win, FALSE);
wclear(my_win.x_win);
his_win.x_nlines = LINES / 2 - 1;
his_win.x_ncols = COLS;
his_win.x_win = newwin(his_win.x_nlines, his_win.x_ncols,
my_win.x_nlines+1, 0);
- scrollok(his_win.x_win, TRUE);
+ scrollok(his_win.x_win, FALSE);
wclear(his_win.x_win);
line_win = newwin(1, COLS, my_win.x_nlines, 0);