bit set: the return value of fgets() should NOT be kept in a signed
char variable, since passing that to addch() would sign-extend it,
setting a whole lot of attribute bits and resulting in a bold, blinking,
alt-charset display of e.g. all Cyrillic characters. Instead, keep
fgets()'s result in an int variable, as $DEITY (dmr? :) intended.
Bump PORTREVISION for the functionality change.
so display(1) works correctly when a command produces less output
than the previous one.
PR: 28405
Submitted by: Stephen Montgomery-Smith <stephen@cauchy.math.missouri.edu>
FWIW, checkout of these things took 5+hrs, staying on the local
.freebsd.org net w/o hitting the 'net at all.
As promised,
$ time cvs ci
real 67m51.701s
user 0m1.250s
sys 0m5.345s
through curses(3X). The command can be compound and the delay
between executions is settable on the command line. The output
from the command had better fit on a single screen, of course.
PR: ports/4384
Submitted by: Stephen J. Roznowski <sjr@home.net>