summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2012-07-08zap weird precision (if provided) that's not really relevant to anythingMarc Espie
2012-07-08remove extraneous line;Jason McIntyre
2012-07-08implement -Tman .AnIngo Schwarze
also reset -[no]split mode at .Sh AUTHORS in -Tascii
2012-07-08Add choose-tree command to show windows and sessions in the sameNicholas Marriott
list. Change choose-window and -session to use the same code. From Thomas Adam.
2012-07-08Switch diff(1) binary file detection from !(isprint() || isspace()) toStefan Sperling
checking for embedded NULs, as was done for grep(1) some time ago. Avoids problems with e.g. latin1-encoded files being treated as binary, since isprint() uses only ASCII by default and diff(1) doesn't call setlocale(). prodded by and ok bluhm
2012-07-08Add flags to insert a .sp or .br request before the next output,Ingo Schwarze
shortening some frequent idioms and preparing for better vertical spacing in the SYNOPSIS; no functional change intended.
2012-07-08Sort SRCS list.Nicholas Marriott
2012-07-08Instead of adding one integer variable for each global boolean output flagIngo Schwarze
and passing around a structure containing them into each and every function, just use a single static bitfield. In preparation for adding more output flags to support more features.
2012-07-08implement -Tman .VaIngo Schwarze
and fix -Tman .Vt for the non-SYNOPSIS case
2012-07-08- move some more stuff into OSConfigJasper Lievisse Adriaanse
- zap references to variables that don't exist anymore ok espie@
2012-07-08preparation for handling permuted optionsMarc Espie
2012-07-08ouch, in the SYNOPSIS, .Vt is a block,Ingo Schwarze
so avoid printing pointless goo in -Tman
2012-07-08implement -Tman .VtIngo Schwarze
2012-07-08a few big changesMarc Espie
- start using our options parser for main libtool options - put link related stuff into their own module. Long term, some unification should happen. - shortdie for cases where we know libtool is not at fault.
2012-07-08stupidMarc Espie
2012-07-08Handle the O_ACCMODE bits correctly, so that O_RDONLY is displayedPhilip Guenthe
even when other flag bits are set ok otto@
2012-07-08Basic implementation of -Tman .Fo and .Fa;Ingo Schwarze
again, some blank lines still missing from the output. While here, remove the trailing semicolon from .Fn when outside .Sh SYNOPSIS.
2012-07-08specialized option handler that will make things simplerMarc Espie
2012-07-08- remove some unneeded quotesJasper Lievisse Adriaanse
2012-07-08- move noshared handling to LT::OSConfigJasper Lievisse Adriaanse
- remove unused $libinstdir variable ok espie@
2012-07-08Remove the "Variables" chapter from CAVEATS now that it's been fixed.Antoine Jacoutot
ok jasper@
2012-07-08fix ajacoutot's whining (i wish...)Marc Espie
okay jasper@
2012-07-08Clear flags across all sessions, from Thomas Adam.Nicholas Marriott
2012-07-07calling help() is not an error, so just return 0.Jasper Lievisse Adriaanse
2012-07-07add a dump method, simplifying the --config callJasper Lievisse Adriaanse
2012-07-07make $mode into an actual object.Marc Espie
cheat a bit by auto-loading corresponding code if needed.
2012-07-07rudimentary support for -Tman .Ft and .Fn;Ingo Schwarze
some blank lines are still missing from the output
2012-07-07- since we're storing the config variables in an object now, just walk theJasper Lievisse Adriaanse
object to print the config, instead of printing the values manually - add gnu_arch to OSConfig while here
2012-07-07basic support for -Tman .InIngo Schwarze
2012-07-07Support the .cc request; code by kristaps@, tests by me.Ingo Schwarze
Needed for sqlite3(1) as reported by espie@.
2012-07-07streamlined codeMarc Espie
2012-07-07- add LT::OSConfig which'll be used to keep all the configuration valuesJasper Lievisse Adriaanse
- also fix a case where // should be used. ok espie@
2012-07-07Fix an assert() raised by `RS' when following `TP' without a tag.Ingo Schwarze
The reason was that `RS' wasn't BSCOPE'd, so the next-line (BLINE) scope opened by `TP' would still be in the macro HEAD. This was from joerg@'s archive of failures. Fix by kristaps@, bsd.lv rev. 1.74.
2012-07-07re-add correctly handling no argumentsJasper Lievisse Adriaanse
ok espie@ cvs: ----------------------------------------------------------------------
2012-07-07Allow UDP server to receive datagrams from multiple socket pairs with -kChristiano F. Haesbaert
flag. Prompted by a question from dsp at 2f30 dot org, diff from Lazarom Koromil with a few tweaks by me, many thanks. ok mikeb@ nicm@ haesbaert@
2012-07-07after .Lb in library section, break the line in the final outputIngo Schwarze
2012-07-07implement -Tman .BkIngo Schwarze
2012-07-07implement -Tman .SmIngo Schwarze
2012-07-07implement -Tman .Bd -offset and -compactIngo Schwarze
2012-07-07minor -mdoc -Tman fixesIngo Schwarze
* right after .Ns, avoid breaking the line in man code * after .Fl without arguments, do not insert a blank into man code * before each .Nm in .Sh SYNOPSIS, insert a .br into man code * skip .Pp arguments, don't copy them to man code
2012-07-07Report incoming connections when -l is specified with -v.Christiano F. Haesbaert
From Ricky Zhou with a few tweaks by me. ok henning@ haesbaert@
2012-07-06restore horrible hack to where it wasMarc Espie
2012-07-06fix print/pdflibMarc Espie
nasty side-effect of partial libtool2 compat
2012-07-06add my copyright, since I'm going to do yet MORE changes...Marc Espie
2012-07-06missing full stop in usage();Jason McIntyre
2012-07-06move setting of tty_flag to after config parsing so RequestTTY optionsDamien Miller
are correctly picked up. bz#1995 patch from przemoc AT gmail.com; ok dtucker@
2012-07-06fix memory leak of passed-in environment variables and connectionDamien Miller
context when new session message is malformed; bz#2003 from Bert.Wesarg AT googlemail.com
2012-07-06Add options to specify starting line number and number of lines to processDarren Tucker
when screening moduli candidates. This allows processing of different parts of a candidate moduli file in parallel. man page help jmc@, ok djm@
2012-07-05error and warning messages should be explicit, sigh...Marc Espie
2012-07-04zap duplicate declMarc Espie