Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!think!harvard!seismo!brl-adm!brl-smoke!smoke!zellich@almsa-1.arpa From: zellich@almsa-1.arpa (Rich Zellich) Newsgroups: net.unix-wizards Subject: Re: Need help with curses Message-ID: <796@brl-smoke.ARPA> Date: Tue, 13-May-86 09:43:11 EDT Article-I.D.: brl-smok.796 Posted: Tue May 13 09:43:11 1986 Date-Received: Sun, 25-May-86 06:35:13 EDT Sender: news@brl-smoke.ARPA Lines: 12 We had the same problem when moving some code from a VAX running BSD 4.2 to a couple of microcomputer versions of UNIX. The solution in our case was simply to change wclear calls to werase calls. wclear will always cause the screen to be cleared, even when it shouldn't, on certain brain- damaged curses implementations, and werase never does (wclear is stated to clear the screen only when the window in question is the whole screen, but it just doesn't work that way; werase does not set the clear-screen flag at all, and turned out to be safe in all cases we have encountered so far). Cheers, Rich