aboutsummaryrefslogtreecommitdiffstats
path: root/misc/display/files
Commit message (Collapse)AuthorAgeFilesLines
* Update to display-1.2a, which incorporates our 8-bit character patch androam2005-12-152-15/+14
| | | | | also unconditionally uses libncurses now. Honor ${STRIP}.
* Fix a long-standing problem with displaying characters with the 8throam2004-08-271-2/+4
| | | | | | | | | | 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.
* upgrade to 1.2ijliao2002-03-182-18/+19
| | | | | PR: 36025 Submitted by: Ports Fury
* Add back the clrtobot() call (or rather, do not remove it),roam2001-08-211-8/+0
| | | | | | | | 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>
* Respect CCkris2000-01-211-3/+13
|
* Update to version 1.1.steve1999-11-272-71/+64
| | | | | PR: 14921 Submitted by: Dominic Mitchell <dom@palmerharvey.co.uk>
* Cleanup extra characters that are sometimes left behind when thesteve1998-09-201-0/+12
| | | | | | | output shortens. PR: 7900 Submitted by: Stephen J. Roznowski <sjr@home.net>
* Display runs a specified command over and over, printing the outputfenner1997-11-241-0/+59
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>