summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
1999-07-21use .Ar on later .It Fl linesTheo de Raadt
1999-07-15o Set default line edit mode to emacs (VISUAL/EDITOR or user can override)Todd C. Miller
o Spell environment correctly
1999-07-15silence -WallTodd C. Miller
1999-07-14update man page to pdksh v5.2.14Aaron Campbell
1999-07-14Official fix for workaround in 1.18Todd C. Miller
1999-07-14pdksh-5.2.14Todd C. Miller
1999-07-09- remove all trailing whitespaceAaron Campbell
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it...
1999-07-06-w writes files to the standard output, not standard input; d@Aaron Campbell
1999-07-05mdoc'ify syntax of the more complicated commands; when I converted this manAaron Campbell
page originally, I didn't know how to do such funky things
1999-07-04trash some old leftover macros and replace them with -mdoc macrosAaron Campbell
1999-07-04New: tar -q option (for quick)Marc Espie
same as pax -n. Useful for packages.
1999-07-04correct use of .Nm; some other formatting nitsAaron Campbell
1999-07-03remove redundant .Pp macrosAaron Campbell
1999-07-01remove trailing spaces; missed from a previous commitAaron Campbell
1999-06-23When redirecting to a file with stdout closed, don't blithely reuseTodd C. Miller
fd 1 since that will cause future output on stdout to go to the file that was redirected. There is probably a better fix for this.
1999-06-21stop casting the third argument to kvm_read to char *. it is a void *.Artur Grabowski
1999-06-15patches from pdksh 5.2.13.11Todd C. Miller
1999-06-15patches from pdksh 5.2.13.11Todd C. Miller
1999-06-14Fixed a bunch of typos, grammar errors, and unclear wording in the shPaul Janzen
man page, and the corresponding problems in the ksh page.
1999-06-06Once again, fix the spelling of "occurrence" in the documentationPaul Janzen
1999-06-04start to remove non-escaped trailing whitespace, it can confuse troff; pjanzen@Aaron Campbell
1999-06-03use the hyphenated form "command-line" in the case of a compound adjective;Aaron Campbell
pjanzen@
1999-05-31New struct statfs with mount options. NOTE: this replaces statfs(2),Todd C. Miller
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag.
1999-05-30repairsAaron Campbell
1999-05-30It's spelled "occurrence". Also a few other minor mods while I'm at it.Paul Janzen
1999-05-29repairsAaron Campbell
1999-05-28more .El madnessAaron Campbell
1999-05-28be more conservative with the .Dq macro; in particular, use .Sq macros most ofAaron Campbell
the time instead when quoting 1-2 characters (makes it much easier to read); based on a patch received awhile ago from d@
1999-05-24document the -m flag, normally only used by su(1); woods@most.weird.com,Aaron Campbell
NetBSD PR/5802
1999-05-23improve; kwesterback@home.com, myselfAaron Campbell
1999-05-23getopt(3) returns -1, not EOFAaron Campbell
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-05-16Cleanup xrefs under SEE ALSO. Specifically:Alex Feldman
- Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
1999-05-12builtin -> built-inAaron Campbell
1999-05-12grammar police: do not hyphenate compound words that act as adjectives if theAaron Campbell
first word ends in -ly i.e., fully-qualified, newly-created, globally-visible, etc. are wrong
1999-05-06"cp -f" should unlink the destination before copying. Similar toTodd C. Miller
a patch from FreeBSD (but this is simpler). Closes PR #821
1999-05-05indentTheo de Raadt
1999-05-03Repair Theo's mayhem, put -o option together again.Marc Espie
1999-05-01defer conversion of unprintable filenames till final display, permittingTheo de Raadt
badly named symbolic links to be handled; bug noted by dm@ fixed by d@
1999-04-30Grammar'n'formattingPaul Janzen
1999-04-29always check return value of strdup()Aaron Campbell
1999-04-28please use Ar macros when describing option flags, tooAaron Campbell
1999-04-28Implement -U <username> option from FreeBSD. Original code by Peter Wemm.Alex Feldman
1999-04-27disable newgrp alias since OpenBSD doesn't have a newgrp(1)Todd C. Miller
1999-04-08memory leak fix; niklasTheo de Raadt
1999-03-25SEE ALSO .Xr's go in lexigraphical orderAaron Campbell
1999-03-18``that that'' -> ``than that''; nash@mcs.netAaron Campbell
1999-03-11fix more comma splices that involve misuse of conjunctive adverbsPaul Janzen
1999-03-10comma splicePaul Janzen
1999-03-04precedence comment; netbsdTheo de Raadt