Path: utzoo!mnetor!uunet!husc6!uwvax!oddjob!gargoyle!ihnp4!ihlpe!dcon From: dcon@ihlpe.ATT.COM (452is-Connet) Newsgroups: comp.bugs.misc Subject: Re: Rolodex bugs Message-ID: <2726@ihlpe.ATT.COM> Date: 9 Mar 88 14:56:53 GMT References: <1081@mimir.dmt.oz> <443@sering.cwi.nl> Reply-To: dcon@ihlpe.UUCP (452is-David Connet) Organization: AT&T - Naperville, Illinois Lines: 27 In article <443@sering.cwi.nl> fmr@cwi.nl (Frank Rahmani) writes: >> library ( BSD 4.3 ). Namely, idlok() & setscrreg(), thus rf.c won't compile. >Replace idlok by newwin and setscreg by subwin. Furthermore replace the lines idlok != newwin and setscreg != subwin idlok(win,flag) If flag is enabled, curses will concider using hardware "insert/delete line" terminal features. If disabled, it will seldom use it. This option is always concidered. It needs to be enabled only if your application needs it, such as a screen editor. It tends to be annoying when used in applications where it isn't really needed. If it cannot be used, curses will redraw the changed lines. setscrreg(top,bot) wsetscrreg(win,top,bot) These allow a user to set a software scrolling region in a window. top and bot are line numbers of the top and bottom margin of the scrolling region. This has nothing to do with the terminals physical scrolling capability. Hope this helps. This is from the SVR3 curses documentation. David Connet ihnp4!ihlpe!dcon