Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!mcsun!corton!inria!seti!ynetfrsp.inria.fr!gs From: gs@ynetfrsp.inria.fr (gs@ynetfrsp.inria.fr) Newsgroups: comp.mail.mh Subject: Re: HELP with vmh problem, please Keywords: mh vmh curses Message-ID: <2114@seti.inria.fr> Date: 26 Apr 91 13:24:03 GMT References: Sender: news@seti.inria.fr Organization: YNET Lines: 37 In article , steve@gapos.bt.co.uk (Steve Rooke) writes: > > I have just started to get MH 6.7.1 running under Uniplus+ SVR2 on our > machines here but have hit a problem with vmh. When I run vmh -vmhproc msh > the screen splits normally, the top window shows a scan of msgbox and I > get the (vmh) prompt in the bottom window okay. If I scan then the bottom > screen fills up but then immediately clears and I am left with a blank > bottom window apart from the (top: bottom:) prompt. A refresh will not > repaint the missing text and I can get the next screen but all I see is > a quick flash of the bottom line of text before it disappears. We had the same problem here (on DPX2000 in SPIX32). The only solution we have found is the following correction in the code of vmh.c : in the routine WINless: ......... #endif notdef lbottom = ltail; while (waddstr (w, "~\n") != ERR) continue; } else { wrefresh (w); return 0; } if (!nwait) <---------- suppress this line wrefresh (w); <---------- suppress this line } ........