summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-10-24Do 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-24spacing and irrelevant glitches which disrupt lintTheo de Raadt
2010-10-24the subtype should be printed unsigned; ok claudioTheo de Raadt
2010-10-24use newer system for more efficient redirection, and chdir the way man(1)Marc Espie
does, so groff is happier with .so. (agreed by ingo)
2010-10-24redo ->system in a smarter way (fork+exec) so that we can sneak in a codeMarc Espie
reference to be run before the command.
2010-10-24Document MODPY_WANTLIBStuart Henderson
2010-10-24Move build_trampoline() and setregs() to a common location for all mips ports.Miod Vallat
2010-10-24Don't short-circuit userret() when returning from trap() in the rm7000Miod Vallat
performance counter code path (which is not enabled at the moment).
2010-10-24When mentioning a function documented elsewhere, .Xr is often better than .Fn.Ingo Schwarze
Prodded by guenther@, ok jmc@.
2010-10-24new sentence, new line;Jason McIntyre
2010-10-24Add MODRUBY_RUNDEP and MODRUBY_BUILDDEP, modelled on python.port.mk.Stuart Henderson
ok jeremy@
2010-10-23let .Bsx print just "BSD/OS" like in modern groffIngo Schwarze
from Ulrich Spoerlein <uqs at spoerlein dot net>
2010-10-23Fix pr 6192: make netinet/tcp.h follow SUSv4 namespace rules byPhilip Guenthe
hiding everything but the TCP_* options unless __BSD_VISIBLE. While we're here, change the structure to use u_int32_t instead of u_int to cut-off the types discussion. ok tedu@, mikeb@
2010-10-23escape '[' in filename tab-completion; fix a type while there.Stuart Henderson
ok djm@
2010-10-23Don't leak the fd returned by mkstemp in vi_histedit error paths.Nicholas Marriott
From zinovik.
2010-10-23regenDamien Bergamini
2010-10-23add a bunch of Realtek RTL8188CU/RTL8188CE/RTL8192CU usb ids.Damien Bergamini
2010-10-23Use CVSROOT for "cvs import" - just ignore CVS/Root files. PR 6497 fromNicholas Marriott
Michael W Bombardieri. ok tobias stsp
2010-10-23Missed this in the last commit. No cookie for me.Paul Irofti
2010-10-23sync library manuals to bsd.lvIngo Schwarze
2010-10-23use proper message in case of multiple arguments to .AnIngo Schwarze
from kristaps@
2010-10-23Reorder the wording where we talk about tagging kernel route table prefixes,Stuart Henderson
following misc@ discussion with Tony Sarendal. ok phessler@
2010-10-23cleanup mdoc(7) validation code: use real functions, not macrosIngo Schwarze
from kristaps@
2010-10-23check that a timeout(9) has been initialized before deleting itJacob Meuser
ok phessler
2010-10-23.Sm no longer produces a linebreak when used in .BdIngo Schwarze
also avoid an extra space after the opening bracket in .Op in -Thtml from kristaps@
2010-10-23sync comments to bsd.lv; no functional changeIngo Schwarze
2010-10-23create another kthread to run xfer abort tasks. xfer abort tasks cannotJacob Meuser
be run from the generic task kthread, because xfers that need to be aborted block newly queued tasks from running (i.e. the xfer to be aborted blocks the abort of that task). as there are now three types of usb tasks, add an argument to usb_init_task() and another member to struct usb_task to specify the task type. fixes boot hangs that are showing up because we now use usb tasks to attach/detach usb devices.
2010-10-23remove PFR_FLAG_ATOMIC. not used, and doesn't work as advertised.Ted Unangst
ok henning
2010-10-23More gnome MODULE tweaks.Antoine Jacoutot
2010-10-23adapt fortran module description according to recent changesSteven Mestdagh
2010-10-23Tweak after recent gnome MODULE change.Antoine Jacoutot
2010-10-23document RT3090Damien Bergamini
2010-10-23make sure an interface is registered before we start using itPeter Hessler
found by clang OK claudio@, krw@
2010-10-23fix the two extremely retarded bugs that prevented the RT30XXDamien Bergamini
devices to work. shame on me. committed over an RT3071.
2010-10-23Add a last-pane command (bound to ; by default). Requested ages ago byNicholas Marriott
somebody whose name I have forgotten.
2010-10-23When removing a pane, don't change the active pane unless the activeNicholas Marriott
pane is actually the one being removed.
2010-10-23Remove the BUGS section that points to FreeBSD ports handbook.Landry Breuil
agreed by espie@
2010-10-23add forgotten ``static''Alexandre Ratchov
2010-10-23Unbreak SMALL_KERNEL. Reported by Mikolaj Kucharski, thanks!Paul Irofti
2010-10-23Pick correct ranlib to operate on libgcc.a when cross-compilingMiod Vallat
2010-10-23Add working compile directoryMiod Vallat
2010-10-22USE_GROFFMarc Espie
2010-10-22document USE_GROFFMarc Espie
2010-10-22Attach the two run(4) usb ids that krw@ added to usbdevs.Damien Bergamini
"Feel free to commit!" krw@
2010-10-22Fix 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-22whining verboten; ok deraadtMike Belopuhov
2010-10-22Move setvbuf() added in r1.19 to before the call to doskip() sinceTodd C. Miller
anything read from stdin in doskip() may be lost when we change the buffering. Fixes PR 6492. OK guenther@
2010-10-22Free attributes that just got allocated beforehands and do not hold anyClaudio Jeker
reference in case attr_optadd() errors out. Found by and diff provided by Igor Zinovik, OK henning@
2010-10-21When the end of a stream is reached (ie mix_eof() called) otherAlexandre 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-21fix style and typos in messages and commentsAlexandre Ratchov