diff options
author | jkh <jkh@FreeBSD.org> | 1996-04-25 01:18:30 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-04-25 01:18:30 +0000 |
commit | e2d6b10783e63957657fa710de2b2bbe382a8cfa (patch) | |
tree | e14284cf51db9d9ffc6a7faea5d6cff9b95ef320 /lib/libncurses | |
parent | 128b738939eb7cfc2a7b122b5e2fdcada9f3428f (diff) | |
download | FreeBSD-src-e2d6b10783e63957657fa710de2b2bbe382a8cfa.zip FreeBSD-src-e2d6b10783e63957657fa710de2b2bbe382a8cfa.tar.gz |
The traceon and traceoff directives aren't in this version ncurses.
Guess nobody's built these tests for quite awhile!
Diffstat (limited to 'lib/libncurses')
-rw-r--r-- | lib/libncurses/TESTS/over.c | 2 | ||||
-rw-r--r-- | 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 1f336d4..5681916 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 3c92027..df2468a 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); |