From fdd92ff346b259e859cb850445c2bddb807a1924 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Thu, 25 Apr 1996 01:18:30 +0000 Subject: [PATCH] The traceon and traceoff directives aren't in this version ncurses. Guess nobody's built these tests for quite awhile! --- lib/libncurses/TESTS/over.c | 2 +- lib/libncurses/TESTS/testcurs.c | 4 ++-- 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);