From mboxrd@z Thu Jan 1 00:00:00 1970 From: Micah Stetson To: 9fans@cse.psu.edu Message-ID: <20010403230832.B19367@cnm-vra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i Subject: [9fans] vt Date: Tue, 3 Apr 2001 23:08:32 -0700 Topicbox-Message-UUID: 789eb9da-eac9-11e9-9e20-41e7f4b1d025 I notice that there are a bunch of improvements in vt with this update. I want to thank whoever did all that work (Russ, I think?). But I noticed that some garbage was being left on my screen while scrolling in mutt. Although, strange stuff still goes on once in a while, most of the problem seemed to disappear with the following change to vt.c: /mnt/wrap/sys/src/cmd/vt/vt.c:581 c /sys/src/cmd/vt/vt.c:581 < clear(Rpt(pt(0, 0), pt(x, ymax+1))); --- > clear(Rpt(pt(0, 0), pt(xmax+1, y))); The code is supposed to clear from the first character on the screen up through the current position. As it was, this line would clear everything to the left of the current position and the next would clear everything on the current line up to the current position. I think the line should really clear everything above the current position, and at least mutt seems to work a little better that way. Micah