Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-28 | more roff adjustments; | Jason McIntyre | |
2010-10-28 | rewrite EXAMPLES, so that it makes a bit more sense; | Jason McIntyre | |
2010-10-28 | adjust text to avoid referencing non-existent pages; | Jason McIntyre | |
2010-10-28 | knock out some "-*- nroff -*-" lines; | Jason McIntyre | |
2010-10-28 | cleanup ;; | Theo de Raadt | |
2010-10-28 | grammar tweak; from Michael W. Bombardieri | Jason McIntyre | |
2010-10-28 | Change basep parameter of getdirentries() to be off_t *, not long * | Todd C. Miller | |
so it works correctly with large offsets (and matches other systems). This requires adding a new getdirentries syscall, with the old one renamed to ogetdirentries. All in-tree consumers of getdirentries() have been updated. Bump libc and libpthread major numbers. OK and with deraadt@ | |||
2010-10-28 | Fix memory leak. | Tobias Stoeckmann | |
ok stsp, zinovik | |||
2010-10-28 | fix a possible NULL deref on loading a corrupt ECDH key | Damien Miller | |
store ECDH group information in private keys files as "named groups" rather than as a set of explicit group parameters (by setting the OPENSSL_EC_NAMED_CURVE flag). This makes for shorter key files and retrieves the group's OpenSSL NID that we need for various things. | |||
2010-10-28 | Font alternating blocks like .RB must not break the line between children | Ingo Schwarze | |
in literal mode. Fixing a bug found by naddy@ in the gettext(3) SYNOPSIS. This required a bit of refactoring: * consolidate pre_RB(), pre_RI(), and pre_BI() into pre_alternate() * save the MANT_LITERAL mode before descending into children * restore MANT_LITERAL mode before printing the last child | |||
2010-10-27 | Fix an off-by-one in an assertion, crashing the renderer on ".Os \&". | Ingo Schwarze | |
This bug was a living fossil, introduced on Feb 21, 2009. Reported by joachimschipper dot nl, thanks. | |||
2010-10-27 | The man(7) macros .HP .IP .RS .TP accept *optional* arguments, | Ingo Schwarze | |
so do not throw an ERROR when there are none. Formatting is already correct: With no arguments, use default widths and no tag. Problem reported by naddy@, thanks. | |||
2010-10-27 | Merge -k and expand @@ parsing code between OpenCVS and OpenRCS, resulting | Tobias Stoeckmann | |
in a performance gain in OpenCVS in some "cvs update" scenarios. ok zinovik | |||
2010-10-26 | Warn developers that .so is fragile and suggest using ln(1) instead; | Ingo Schwarze | |
throwing a warning here was suggested by Joerg Sonnenberger. | |||
2010-10-26 | Downgrade nearly 20 ERRORS to WARNINGS. | Ingo Schwarze | |
All these indicate problems in the mdoc(7) or man(7) source code, but they can't cause relevant information loss or clobbered formatting. While here, error message improve wording and make it more uniform, don't throw MANDOCERR_NOWIDTHARG twice when there is one single issue, and consolidate MANDOCERR_WIDTHARG into MANDOCERR_IGNARGV. | |||
2010-10-26 | Support .so (low-level roff "switch source file"), | Ingo Schwarze | |
needed for Xenocara and various ports. Accept only relative paths and no ascension to the parent directory as suggested by Joerg Sonnenberger; code looked over by Joerg, too. Useful discussions with various people, among others espie@. | |||
2010-10-26 | Refactoring, no functional change: | Ingo Schwarze | |
Seperate the code to read and parse a PART of a page (new function pdesc()) from the code to finish and output a FULL page (function fdesc()); in preparation for .so support. | |||
2010-10-26 | add HISTORY and AUTHORS sections. | Felix Kronlage | |
ok jmc@, djm@ | |||
2010-10-25 | Add missing FNM_CASEFOLD flag to fnmatch() when locate is run in case | Todd C. Miller | |
insensitive mode. From Geoff Steckel. OK deraadt@ | |||
2010-10-24 | Do not throw FATAL errors when there is no need to: | Ingo Schwarze | |
- when encountering nested displays (.Bd containing .Bd, .D1, .D1) - when a block end macro was forgotten - when ending a block that was never started - when the uname(3) system call failed along with a little related cleanup | |||
2010-10-23 | let .Bsx print just "BSD/OS" like in modern groff | Ingo Schwarze | |
from Ulrich Spoerlein <uqs at spoerlein dot net> | |||
2010-10-23 | escape '[' in filename tab-completion; fix a type while there. | Stuart Henderson | |
ok djm@ | |||
2010-10-23 | Use CVSROOT for "cvs import" - just ignore CVS/Root files. PR 6497 from | Nicholas Marriott | |
Michael W Bombardieri. ok tobias stsp | |||
2010-10-23 | sync library manuals to bsd.lv | Ingo Schwarze | |
2010-10-23 | use proper message in case of multiple arguments to .An | Ingo Schwarze | |
from kristaps@ | |||
2010-10-23 | cleanup mdoc(7) validation code: use real functions, not macros | Ingo Schwarze | |
from kristaps@ | |||
2010-10-23 | .Sm no longer produces a linebreak when used in .Bd | Ingo Schwarze | |
also avoid an extra space after the opening bracket in .Op in -Thtml from kristaps@ | |||
2010-10-23 | sync comments to bsd.lv; no functional change | Ingo Schwarze | |
2010-10-23 | Add a last-pane command (bound to ; by default). Requested ages ago by | Nicholas Marriott | |
somebody whose name I have forgotten. | |||
2010-10-23 | When removing a pane, don't change the active pane unless the active | Nicholas Marriott | |
pane is actually the one being removed. | |||
2010-10-22 | Fix a crash when mixing the legacy width option (e.g. fold -70) | Todd C. Miller | |
with getopt()-style options, such as "fold -b70". Mixing the legacy width with another option is no longer permitted. This matches legacy behavior and other implementations. OK kili@ | |||
2010-10-22 | whining verboten; ok deraadt | Mike Belopuhov | |
2010-10-22 | Move setvbuf() added in r1.19 to before the call to doskip() since | Todd C. Miller | |
anything read from stdin in doskip() may be lost when we change the buffering. Fixes PR 6492. OK guenther@ | |||
2010-10-21 | When the end of a stream is reached (ie mix_eof() called) other | Alexandre Ratchov | |
possibly blocked streams are processed. If during this phase the end of another stream is reached then stop the processing because the job will be already finished by the second stream. Otherwise we may end up running a destroyed stream. help from Edward Wandasiewicz <w13ntd at googlemail.com>, thanks | |||
2010-10-21 | fix style and typos in messages and comments | Alexandre Ratchov | |
2010-10-21 | use MODE_xxx and XRUN_xxx macros everywhere, and zap corresponding | Alexandre Ratchov | |
AMSG_xxx macros, which in turns simplifies the code | |||
2010-10-21 | more EXIT STATUS bits; from Daniel Dickman | Jason McIntyre | |
2010-10-21 | There is neither TCP6 nor struct tcp6cb in our kernel. So remove | Alexander Bluhm | |
tcp6_dump() from netstat. It was never called anyway. No binary change. ok henning@ claudio@ | |||
2010-10-20 | Merge OpenCVS' rcs_deltatext_set into OpenRCS, fixing a memory leak. | Tobias Stoeckmann | |
ok nicm zinovik | |||
2010-10-20 | Remove the need for rp_file in parser structure, instead keep only one | Tobias Stoeckmann | |
FILE pointer in RCSFILE. This fixes some ugliness in closing an fdopen()ed FILE and its underlying file descriptor. Notified by Joerg Sonnenberger <joerg at britannica dot bec to de> discussed with and ok nicm | |||
2010-10-20 | Mark repeating keys with "(repeat)" in the key list. | Nicholas Marriott | |
2010-10-20 | Prevent a NULL pointer dereference if rcsparse_deltatexts is called with | Tobias Stoeckmann | |
a revision not specified as delta in an RCS file. Spotted by and ok zinovik | |||
2010-10-19 | no more vgrind(1); ok deraadt | Jason McIntyre | |
2010-10-19 | Add a few more tcpcb and sockbuffer variables that tcpbench can inspect. | Claudio Jeker | |
2010-10-18 | sup is no longer used. reminded by pirofti and jmc | Theo de Raadt | |
2010-10-18 | vgrind goes to the attic | Theo de Raadt | |
2010-10-18 | disable vgrind; raw roff support is gone. it might surface in the ports ↵ | Theo de Raadt | |
tree, or the time for vgrind has gone | |||
2010-10-18 | Merge the before and after attach client code into one in client.c | Nicholas Marriott | |
(instead of two in tmux.c and client.c). | |||
2010-10-18 | more usd/psd stuff lurking... | Jason McIntyre | |
2010-10-18 | remove references to now removed usd/psd/smm docs; | Jason McIntyre | |