Subject: curses(3) bug.
To: None <netbsd-bugs@NetBSD.ORG>
From: Peter Seebach <seebs@solon.com>
List: netbsd-bugs
Date: 05/15/1995 13:24:08
werase(3) and wclear(3) are documented as moving the current
curser position to (0, 0).  This behavior is consistent with
other curses implementations.  It is not done.

Patch:

add
wmove(win, 0, 0); to erase.c right before the return(0);

-s