aboutsummaryrefslogtreecommitdiff
path: root/lib/libncurses
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-04-25 01:18:30 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-04-25 01:18:30 +0000
commitfdd92ff346b259e859cb850445c2bddb807a1924 (patch)
treee14284cf51db9d9ffc6a7faea5d6cff9b95ef320 /lib/libncurses
parent55e214c197c14b26e23f2061ccc3a4f07b2696d1 (diff)
Notes
Diffstat (limited to 'lib/libncurses')
-rw-r--r--lib/libncurses/TESTS/over.c2
-rw-r--r--lib/libncurses/TESTS/testcurs.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libncurses/TESTS/over.c b/lib/libncurses/TESTS/over.c
index 1f336d4321c7..5681916ee4d8 100644
--- a/lib/libncurses/TESTS/over.c
+++ b/lib/libncurses/TESTS/over.c
@@ -27,7 +27,7 @@ main()
* Set up the screen... *
****************************************************************/
initscr();
- traceon();
+ /* traceon(); */
noecho();
nonl();
cbreak();
diff --git a/lib/libncurses/TESTS/testcurs.c b/lib/libncurses/TESTS/testcurs.c
index 3c92027d84a3..df2468a87e34 100644
--- a/lib/libncurses/TESTS/testcurs.c
+++ b/lib/libncurses/TESTS/testcurs.c
@@ -311,7 +311,7 @@ WINDOW *win;
char Buffer [80];
chtype ch;
- traceon();
+ /* traceon(); */
nl ();
wclear (win);
mvwaddstr(win, 1, 1, "You should now have a screen in the upper left corner, and this text should have wrapped");
@@ -374,7 +374,7 @@ WINDOW *win;
wmove(win, 8, 1);
wdeleteln(win);
Continue(win);
- traceoff();
+ /* traceoff(); */
wmove (win, 5, 9);
ch = winch (win);