summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Nuke more from the repository.ps2000-05-2926-9086/+0
|
* Silence warnings.kris2000-05-271-1/+8
|
* Back out the previous change to the queue(3) interface.jake2000-05-264-8/+8
| | | | | | It was not discussed and should probably not happen. Requested by: msmith and others
* Don't pass scope-id to EPRT command.ume2000-05-251-1/+1
| | | | Reviewed by: sumikawa
* Change the way that the queue(3) structures are declared; don't assume thatjake2000-05-234-8/+10
| | | | | | | | the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
* Install a manpage for more.ps2000-05-231-0/+2
|
* Detach usr.bin/more and install a link from less. less will behaveps2000-05-232-1/+2
| | | | like more if invoked as more. The old more has not been removed.
* Replace isurl() with isipv6addr().ume2000-05-223-1/+32
| | | | | Reported by: Koji Kondo <koji@jp.above.net> Obtained from: NetBSD
* Dont use/install the formatted man file.ps2000-05-221-2/+2
|
* bmake glue for less.ps2000-05-226-0/+388
| | | | Reviewed by: peter
* In the modern world, things are much faster than when more(1) was created.green2000-05-211-2/+1
| | | | | Scrolling sideways is fast, and a "...skipping..." message making everything blink does much more harm than good.
* fork() -> vfork()kris2000-05-191-3/+4
| | | | | | | | This would have been commit #2 which was "Obtained from: BSD/OS" except their code is buggy (they call err() if the execl() fails, which will incorrectly call exit()), so instead this is: Obtained from: NetBSD
* Use different filenames.hoek2000-05-171-2/+4
| | | | Submitted by: bin/16927, Mike Heffner
* Catchup with the times:hoek2000-05-161-25/+42
| | | | | | | | | | | | | | | | | | - Avoid use of word that Americans don't know how to spell - Avoid use of capital letters when referring to command names - Bookmarks do span files - Use .Qq where appropriate. I didn't use .Sq or .Dq where `' and ``'' appear, since it's not clear to me what modern usage of those two macros is. - Say simply: ``See .Xr xxx 1'' rather than ``See the .Xr xxx 1 command''. This former style has undoubtedly increased in popularity due to html and hyperlinks, but it's always been around (esp. for manpage sections other than section 1). - Use .St - Dedocument use of `-' to mean that `more` should read from its standard input. The modern preferred way to read from standard input is by specifying /dev/stdin. This is not a prelude to changing more's behaviour within the short term (ie. at least 3-4 years).
* From PR submitter:hoek2000-05-161-2/+2
| | | | | | | | | | | | compress uses setfile() to make flags, ownership and mode of the output the same as those of the original. However, if the filesystem holding the output file doesn't support these operations, compress prints a warning. This bites a bit with NFS directories, which always fail the chflags() operation. If the file system doesn't support the operation, then the flags data wasn't valid on the original file anyway, so the warning is spurious. Submitted by: bin/16981 (Peter Edwards <peter.edwards@ireland.com>)
* Remove addition of -g to CFLAGScpiazza2000-05-161-1/+1
|
* I'm not sure what posessed me to initialize wraplines to FALSE in the prevhoek2000-05-151-1/+1
| | | | commit, but it's obviously supposed to be initialised to TRUE.
* Oops, byte offset was as off_t.phk2000-05-151-1/+1
|
* Let cmp(1) grow in -x option to print differences in contemporarry hexphk2000-05-154-4/+25
| | | | format rather than the mixed decimal/octal format of -l.
* Update make(1) manpage to include information about the new loudwill2000-05-141-0/+3
| | | | debugging facility I introduced earlier today.
* Add loud debugging facility (-dl option) which allows programmers/developerswill2000-05-144-2/+6
| | | | | | | | | | | | to override @-prefixed commands in Makefiles. It is especially useful for debugging ports and/or complex Makefiles in such a manner that is basically a last resort, but is quite effective if the output is well-handled. I'll update the manpage after dinner. ;-) Better patch submitted by: steve Reviewed by: phk, steve, chuckr, obrien, Lyndon Nerenberg <lyndon@orthanc.ab.ca>
* Fix minor style nits.obrien2000-05-141-2/+2
|
* Install otp-md{4,5} bits.obrien2000-05-141-0/+5
| | | | | PR: 14911 Submitted-by: Lyndon Nerenberg <lyndon@orthanc.ab.ca>
* Allow bookmarks to cross files.hoek2000-05-144-26/+102
|
* Backout previous commit to this file: it dies in buildworld environment.hoek2000-05-121-3/+1
| | | | | I probably forgot to put an ${.OBJDIR} somewhere. I'll redo the change later when I get a chance to test that thesis.
* Improve hack from previous commit to this file: exit if we get successivehoek2000-05-121-5/+15
| | | | EOFs from reading stderr (eg. not from argv[1]).
* Use termcap(5) function key sequences rather than hardcoding for syscons.hoek2000-05-121-8/+24
| | | | Now page-up/down work from xterms.
* Create magic variables that return termcap(5) strings for function keys.hoek2000-05-122-22/+97
|
* Fix an uncommon bug that would cause us to stop accepting input if thehoek2000-05-121-0/+10
| | | | user entered a command that filled exactly the remaining screen width.
* Only main.c depends on defrc.hhoek2000-05-121-1/+3
|
* Small style fix '=' -> ' = 'nsayer2000-05-111-1/+1
|
* Fix compatibility issue in sed. Do so by explicitely adding ansayer2000-05-111-1/+5
| | | | | | newline to the end of any -e argument. PR: bin/18474
* Unwind state on malloc() failure more carefully: avoids memory leak.hoek2000-05-111-4/+13
|
* Make the TAB key tab. Under syscons, shift-TAB also performs a backtab.hoek2000-05-113-0/+8
|
* Fix a comment and actually expand \t the way the comment suggests.hoek2000-05-111-6/+10
|
* Corractly use .Nm and .An/.Aq macros. Replace FreeBSD with .Fx macrophantom2000-05-101-7/+10
| | | | e.
* The printenv(1) command is now a builtin(1) in csh(1).sheldonh2000-05-091-0/+7
|
* Fix miscellaneous mdoc macro argument limit infringements.sheldonh2000-05-091-2/+1
| | | | | PR: 18465 Reported by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
* Exit if we read two EOFs from the keyboard input stream. Why two and nothoek2000-05-091-5/+19
| | | | | | one? Just 'cause. PR: misc/14932
* Don't segv if viewing "#" and there is no prev-file (long-standing).hoek2000-05-091-2/+3
| | | | | | Staticize a variable that was meant to be static (broken in r.1.11). PR: bin/11370 Henry Whincup <henry@techiebod.com> (for the segv)
* Oops, revert previous commitkris2000-05-071-2/+2
|
* Update device references.kris2000-05-073-8/+7
|
* Add $FreeBSD$ (and test remote commits after the Freefall upgrade)obrien2000-05-061-0/+1
|
* Remove unneeded #include <sys/buf.h>phk2000-05-051-1/+0
|
* Don't include <sys/buf.h>phk2000-05-053-3/+0
|
* These files are located under usr.bin/calendar/calendars/ru_RU.KOI8-R nowphantom2000-05-045-131/+0
|
* Rename calendars/ru_SU.KOI8-R to calendars/ru_RU.KOI8-R to reflectphantom2000-05-042-2/+2
| | | | | | locale name change (ru_SU.KOI8-R -> ru_RU.KOI8-R) Not objected to by: ache
* Correct comments and variable names left since repo-copyphantom2000-05-045-23/+23
|
* Add missing $FreeBSD$ tagsphantom2000-05-044-0/+7
|
* Restore this file.obrien2000-05-021-0/+152
| | | | Requested by: bde
OpenPOWER on IntegriCloud