aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tset
Commit message (Collapse)AuthorAgeFilesLines
* Reduce compiler warning: variable might be used uninitialized, by givingPhilippe Charnier2005-05-291-0/+1
| | | | | | | an initial value. Notes: svn path=/head/; revision=146752
* Expand *n't contractions.Ruslan Ermilov2005-02-131-1/+1
| | | | Notes: svn path=/head/; revision=141846
* Sort sections.Ruslan Ermilov2005-01-181-13/+13
| | | | Notes: svn path=/head/; revision=140420
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-1/+1
| | | | Notes: svn path=/head/; revision=131491
* Add section number to .XrPhilippe Charnier2003-06-081-1/+1
| | | | Notes: svn path=/head/; revision=116048
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-011-1/+1
| | | | | | | especially in troff files. Notes: svn path=/head/; revision=108533
* ANSIify function definitions.David Malone2002-09-041-10/+4
| | | | | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5 Notes: svn path=/head/; revision=102944
* Clean up malloc(3)'s argument. Remove casts which do nothing when we'reJuli Mallett2002-05-171-1/+1
| | | | | | | | | | using sizeof() anyway. Use slightly more consistent (per-file) error reporting for malloc(3) returning NULL. If "malloc failed" was being printed, don't use err(3). If a NULL format is being used, use err(3). In one case errx(3) was being used with strerror(3), so just use err(3). Notes: svn path=/head/; revision=96785
* Use `The .Nm utility'Philippe Charnier2002-04-201-4/+4
| | | | Notes: svn path=/head/; revision=95124
* remove __PWarner Losh2002-03-225-17/+17
| | | | Notes: svn path=/head/; revision=92922
* WARNS=2 fixes, use __FBSDID().Mark Murray2001-12-117-62/+74
| | | | Notes: svn path=/head/; revision=87701
* mdoc(7) police: s/BSD/.Bx/ where appropriate.Ruslan Ermilov2001-08-141-1/+3
| | | | Notes: svn path=/head/; revision=81622
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79535
* Nuke unused variables.Dima Dorfman2001-06-241-1/+1
| | | | Notes: svn path=/head/; revision=78737
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-191-1/+1
| | | | Notes: svn path=/head/; revision=70197
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* Changed variable killchar to killch and erasechar to erasech to avoidDavid Greenman2000-11-113-13/+14
| | | | | | | | | a name clash with the library functions of the same name (in libncurses). This problem was masked when building tset shared (the local symbols had precedence), but caused tset to core dump when it was built -static. Notes: svn path=/head/; revision=68617
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-2/+1
| | | | Notes: svn path=/head/; revision=68575
* Take a shot at making this work under termcap/terminfo ncurses. ItPeter Wemm1999-08-304-25/+33
| | | | | | | | cheats a bit by accessing the termcap string buffer. A better solution is needed. Notes: svn path=/head/; revision=50638
* $Id$ -> $FreeBSD$Peter Wemm1999-08-287-7/+7
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* Clean up some ambiguous nested if/elses.Bill Fumerola1999-07-041-2/+3
| | | | Notes: svn path=/head/; revision=48566
* Add the 'reset' command to the NAME section.Mike Pritchard1999-06-241-1/+2
| | | | | | | Pointed-out-by: Jesus Monroy <jesus.monroy@usa.net> in freebsd-doc Notes: svn path=/head/; revision=48165
* Many places in the code NULL is used in integer context, wherePoul-Henning Kamp1997-09-181-2/+2
| | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no> Notes: svn path=/head/; revision=29574
* Use err(3) insteadof local redefinition. Sync usage string with man page.Philippe Charnier1997-08-188-76/+73
| | | | Notes: svn path=/head/; revision=28370
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Remove _set_ospeed, done in tgetent now.Andrey A. Chernov1995-08-051-1/+0
| | | | Notes: svn path=/head/; revision=9941
* Change outc to match prototypeAndrey A. Chernov1995-08-041-2/+2
| | | | Notes: svn path=/head/; revision=9889
* Make tset works with non-fixed termios speeds too.Andrey A. Chernov1995-08-043-61/+8
| | | | | | | Eliminate ospeed switch using new _set_ospeed function Notes: svn path=/head/; revision=9888
* Fix false backspace reportingAndrey A. Chernov1995-05-141-3/+1
| | | | Notes: svn path=/head/; revision=8524
* Fix erase determination code: don't look atAndrey A. Chernov1995-03-271-4/+2
| | | | | | | system defaults which is always the same Notes: svn path=/head/; revision=7412
* Set given term name exactly, not first name from termcap entry.Andrey A. Chernov1994-11-071-13/+0
| | | | | | | It helps for rlogin/telnet to another systems without our termcap Notes: svn path=/head/; revision=4244
* Back out ospeed changeAndrey A. Chernov1994-10-063-6/+2
| | | | Notes: svn path=/head/; revision=3397
* PC/ospeed code ifdefed out, our libtermcap use usleep nowAndrey A. Chernov1994-10-063-2/+6
| | | | Notes: svn path=/head/; revision=3390
* Back out 'not choose first (two-letter) name' fix, all two-letter namesAndrey A. Chernov1994-09-151-9/+4
| | | | | | | already removed from 4.4 termcap Notes: svn path=/head/; revision=2774
* Speed matching code never successful, because ospeed range is [0..17]Andrey A. Chernov1994-09-092-10/+46
| | | | | | | | | but termios speed range is [0..115200]. Of cource ospeed initialized with wrong value too which cann affects terminals with padding, fixed. 57600,115200 added. Notes: svn path=/head/; revision=2599
* Use second terminal name instead of obsoleted and duplicatedAndrey A. Chernov1994-09-091-4/+9
| | | | | | | first two-letter names (from 1.1.5.1) Notes: svn path=/head/; revision=2598
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-279-0/+1729
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590