Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Dont use/install the formatted man file. | ps | 2000-05-22 | 1 | -2/+2 |
| | |||||
* | bmake glue for less. | ps | 2000-05-22 | 6 | -0/+388 |
| | | | | Reviewed by: peter | ||||
* | In the modern world, things are much faster than when more(1) was created. | green | 2000-05-21 | 1 | -2/+1 |
| | | | | | Scrolling sideways is fast, and a "...skipping..." message making everything blink does much more harm than good. | ||||
* | fork() -> vfork() | kris | 2000-05-19 | 1 | -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. | hoek | 2000-05-17 | 1 | -2/+4 |
| | | | | Submitted by: bin/16927, Mike Heffner | ||||
* | Catchup with the times: | hoek | 2000-05-16 | 1 | -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: | hoek | 2000-05-16 | 1 | -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 CFLAGS | cpiazza | 2000-05-16 | 1 | -1/+1 |
| | |||||
* | I'm not sure what posessed me to initialize wraplines to FALSE in the prev | hoek | 2000-05-15 | 1 | -1/+1 |
| | | | | commit, but it's obviously supposed to be initialised to TRUE. | ||||
* | Oops, byte offset was as off_t. | phk | 2000-05-15 | 1 | -1/+1 |
| | |||||
* | Let cmp(1) grow in -x option to print differences in contemporarry hex | phk | 2000-05-15 | 4 | -4/+25 |
| | | | | format rather than the mixed decimal/octal format of -l. | ||||
* | Update make(1) manpage to include information about the new loud | will | 2000-05-14 | 1 | -0/+3 |
| | | | | debugging facility I introduced earlier today. | ||||
* | Add loud debugging facility (-dl option) which allows programmers/developers | will | 2000-05-14 | 4 | -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. | obrien | 2000-05-14 | 1 | -2/+2 |
| | |||||
* | Install otp-md{4,5} bits. | obrien | 2000-05-14 | 1 | -0/+5 |
| | | | | | PR: 14911 Submitted-by: Lyndon Nerenberg <lyndon@orthanc.ab.ca> | ||||
* | Allow bookmarks to cross files. | hoek | 2000-05-14 | 4 | -26/+102 |
| | |||||
* | Backout previous commit to this file: it dies in buildworld environment. | hoek | 2000-05-12 | 1 | -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 successive | hoek | 2000-05-12 | 1 | -5/+15 |
| | | | | EOFs from reading stderr (eg. not from argv[1]). | ||||
* | Use termcap(5) function key sequences rather than hardcoding for syscons. | hoek | 2000-05-12 | 1 | -8/+24 |
| | | | | Now page-up/down work from xterms. | ||||
* | Create magic variables that return termcap(5) strings for function keys. | hoek | 2000-05-12 | 2 | -22/+97 |
| | |||||
* | Fix an uncommon bug that would cause us to stop accepting input if the | hoek | 2000-05-12 | 1 | -0/+10 |
| | | | | user entered a command that filled exactly the remaining screen width. | ||||
* | Only main.c depends on defrc.h | hoek | 2000-05-12 | 1 | -1/+3 |
| | |||||
* | Small style fix '=' -> ' = ' | nsayer | 2000-05-11 | 1 | -1/+1 |
| | |||||
* | Fix compatibility issue in sed. Do so by explicitely adding a | nsayer | 2000-05-11 | 1 | -1/+5 |
| | | | | | | newline to the end of any -e argument. PR: bin/18474 | ||||
* | Unwind state on malloc() failure more carefully: avoids memory leak. | hoek | 2000-05-11 | 1 | -4/+13 |
| | |||||
* | Make the TAB key tab. Under syscons, shift-TAB also performs a backtab. | hoek | 2000-05-11 | 3 | -0/+8 |
| | |||||
* | Fix a comment and actually expand \t the way the comment suggests. | hoek | 2000-05-11 | 1 | -6/+10 |
| | |||||
* | Corractly use .Nm and .An/.Aq macros. Replace FreeBSD with .Fx macro | phantom | 2000-05-10 | 1 | -7/+10 |
| | | | | e. | ||||
* | The printenv(1) command is now a builtin(1) in csh(1). | sheldonh | 2000-05-09 | 1 | -0/+7 |
| | |||||
* | Fix miscellaneous mdoc macro argument limit infringements. | sheldonh | 2000-05-09 | 1 | -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 not | hoek | 2000-05-09 | 1 | -5/+19 |
| | | | | | | one? Just 'cause. PR: misc/14932 | ||||
* | Don't segv if viewing "#" and there is no prev-file (long-standing). | hoek | 2000-05-09 | 1 | -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 commit | kris | 2000-05-07 | 1 | -2/+2 |
| | |||||
* | Update device references. | kris | 2000-05-07 | 3 | -8/+7 |
| | |||||
* | Add $FreeBSD$ (and test remote commits after the Freefall upgrade) | obrien | 2000-05-06 | 1 | -0/+1 |
| | |||||
* | Remove unneeded #include <sys/buf.h> | phk | 2000-05-05 | 1 | -1/+0 |
| | |||||
* | Don't include <sys/buf.h> | phk | 2000-05-05 | 3 | -3/+0 |
| | |||||
* | These files are located under usr.bin/calendar/calendars/ru_RU.KOI8-R now | phantom | 2000-05-04 | 5 | -131/+0 |
| | |||||
* | Rename calendars/ru_SU.KOI8-R to calendars/ru_RU.KOI8-R to reflect | phantom | 2000-05-04 | 2 | -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-copy | phantom | 2000-05-04 | 5 | -23/+23 |
| | |||||
* | Add missing $FreeBSD$ tags | phantom | 2000-05-04 | 4 | -0/+7 |
| | |||||
* | Restore this file. | obrien | 2000-05-02 | 1 | -0/+152 |
| | | | | Requested by: bde | ||||
* | Add descriptions of the nm(1aout) keywords and their meanings. | obrien | 2000-05-02 | 1 | -0/+26 |
| | | | | | PR: docs/17269 Submitted by: Oscar Bonilla <obonilla@fisicc-ufm.edu> | ||||
* | nm.1aout is used here now. | obrien | 2000-05-02 | 1 | -152/+0 |
| | |||||
* | Fix a long vs. int problem that was fatal on i386s with 64bit longs (but | hoek | 2000-05-02 | 1 | -8/+11 |
| | | | | | | not alphas with 64bit longs). Submitted by: bde (a while ago) | ||||
* | Remove the undocumented semconfig() system calls. These cause more trouble | peter | 2000-05-01 | 1 | -8/+0 |
| | | | | than they are worth. | ||||
* | Remove reference to bsd2dos command, refer to fconv and similar. | nik | 2000-04-30 | 1 | -3/+3 |
| | | | | | PR: docs/17101 Submitted by: Udo Erdelhoff <ue@nathan.ruhr.de> | ||||
* | Add descriptions of the nm(1) keywords and their meanings. | nik | 2000-04-30 | 1 | -0/+26 |
| | | | | | PR: docs/17269 Submitted by: Oscar Bonilla <obonilla@fisicc-ufm.edu> | ||||
* | Default device not longer uses the "r" raw prefix. | obrien | 2000-04-26 | 1 | -1/+1 |
| | |||||
* | Add braces to avoid ambiguity in a nested conditional (silences a gcc | sheldonh | 2000-04-26 | 1 | -1/+2 |
| | | | | warning). |