summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2010-10-15No need to remove RCS_PARSE flag from rf_flags after successfully parsing.Tobias Stoeckmann
2010-10-15Fixed default branch handling and added support for branches in branches.Tobias Stoeckmann
ok nicm
2010-10-15Replaced RCS parser code with new rcsparse.{c,h}:Tobias Stoeckmann
- be very strict about things we parse - print more information about errors if they occur - do not fatal() directly in parser, give caller a chance to react - fix an rcs design issue when it comes to login names tested by many on tech@ ok xsa
2010-10-14Use an explicit event rather than event_once for the main event so itNicholas Marriott
can be removed when the client becomes ready.
2010-10-14Treat the meta bit in the xterm extended modifier key set as the same asNicholas Marriott
escape (tmux's meta). From Emanuele Giaquinta.
2010-10-14Put "or" on new line from command with .Ic.Nicholas Marriott
2010-10-13missing quotes; thanks jmc@Stuart Henderson
2010-10-13adapt to new "socket ... restricted" syntax, reported by Patrick Lamaiziere,Stuart Henderson
ok henning@
2010-10-13The heimdal code switched to using DES from libcrypto when 0.7.2Jonathan Gray
was imported over four years ago, so we don't need to link libdes for kerberos anymore. ok mikeb@ deraadt@
2010-10-12If the input length was specified, use it to set the stdio bufferTodd C. Miller
size for fread(). Otherwise, stdio will read as much as it can (using a very large buffer) which may cause a hang if the input comes from a blocking device such as /dev/srandom. OK deraadt@
2010-10-12Typo in confirmation message. bz#1827, patch from imorgan at nas nasa govDarren Tucker
2010-10-11Do similar changes to netstat as done to route(8). Try to show theClaudio Jeker
most expected rtable when doing a netstat -rn. OK henning@
2010-10-09Set cause when failing due to linking a window to itself, from MartinNicholas Marriott
Pieuchot.
2010-10-08remove three superfluous trailing tabs, no binary change.Igor Sobrado
2010-10-07use an upper case "C" in "Control" for consistency; use the sameIgor Sobrado
capitalization for keys in Control and Meta for both key bindings and descriptions. ok kjell@
2010-10-07use a .Bk/.Ek block to avoid breaking options with arguments.Igor Sobrado
ok jmc@
2010-10-07usage must fit on a 80-column display.Igor Sobrado
2010-10-06swapped args to kill(2)Damien Miller
2010-10-06kill proxy command on fatal() (we already kill it on clean exit);Damien Miller
ok markus@
2010-10-05Skip NULL entries in the sessions list when choosing the next session,Nicholas Marriott
from Simon Olofsson.
2010-10-05Zapped unused function rcs_tag_resolve.Tobias Stoeckmann
ok xsa
2010-10-05rcs_state_check must check for more invalid characters than just space.Tobias Stoeckmann
ok nicm
2010-10-05use default shell /bin/sh if $SHELL is ""; ok markus@Damien Miller
2010-10-02style cleanup, no functional change:Ingo Schwarze
* make the initial maxvis/mmax calculation easier to understand * where real, non-indexing casts happen, make them explicit * avoid a few lint warnings that can easily be fixed * remove one needless LINTED comment "I like this" kristaps@
2010-10-01turn off -g tooDamien Miller
2010-10-01oops, didn't mean to turn -Werror on for everyone.Damien Miller
2010-10-01adapt to API changes in openssl-1.0.0aDamien Miller
2010-10-01* need a space before .No even if it starts with a closing delimiterIngo Schwarze
* slightly simplify .Pf *_IGNDELIM code, and share part of it with .No * do not let opening delimiters fall out of the front of .Ns (from kristaps@) This fixes a few spacing issues in csh(1) and ksh(1). OK kristaps@
2010-10-01more EXIT STATUS tweaks; from Daniel DickmanJason McIntyre
2010-09-30prevent free() of string in .rodata when overriding AuthorizedKeys inDamien Miller
a Match block; patch from rein AT basefarm.no
2010-09-29Support for update -C, from zinovik.Nicholas Marriott
ok tobias xsa
2010-09-29it's valid syntax for .pc files to have:Jasper Lievisse Adriaanse
Requires: pkg-config >= 0.21 out pkg-config couldn't handle it, as pkg-config(1) doesn't install a .pc file to check this dependency against. fd.o pkg-config deals with this by treating this as a special case; adapt ours to do the same. tested in a ports bulk build and xenocara build ok ckuethe@ sthen@
2010-09-29Ensure that we always parse all deltas before expecting "desc" keyword.Tobias Stoeckmann
ok nicm, zinovik
2010-09-29various EXIT STATUS fixes; from Daniel DickmanJason McIntyre
2010-09-28Make -k work in clientmode by passing the right socket to theClaudio Jeker
stats_prepare() function.
2010-09-28Nuke a leftover RB tree declaration spotted by blambert.Nicholas Marriott
2010-09-27Merge the last bits of 1.10.6 (released today), most were already in:Ingo Schwarze
* ignore double-.Pp * ignore .Pp before .Bd and .Bl (unless -compact in specified) * avoid double blank line upon .Pp, .br and friends in literal context * cast enums to int when passing them to exit(3) to please lint(1) While merging, fix a regression introduced by kristaps@: Outside literal mode, double blank lines must both be printed. To achieve this again after kristaps@ improvements in 1.10.6, treat such blank lines as .sp (instead of .Pp as in 1.10.5) and drop .Pp before .sp just like dropping .Pp before .Pp.
2010-09-27Have cvs_file_walkdir() ignore CVS/ directories when walking a repository tree.Joshua Elsasser
This fixes r* commands such as rlog against a repository which has somehow ended up containing CVS/Entries.Static files. ok nicm@ guenther@
2010-09-26new sentence, new line;Jason McIntyre
2010-09-26when performing an "ls" in columnated (short) mode, only callDamien Miller
ioctl(TIOCGWINSZ) once to get the window width instead of per- filename
2010-09-26Two new options:Nicholas Marriott
- server option "exit-unattached" makes the server exit when no clients are attached, even if sessions are present; - session option "destroy-unattached" destroys a session once no clients are attached to it. These are useful for preventing tmux remaining in the background where it is undesirable and when using tmux as a login shell to keep a limit on new sessions.
2010-09-26If an explicit scope is still open at the end of an input file,Ingo Schwarze
report an ERROR: We can still render the page by just closing the open scope, but it is likely that information will be missing or document structure mangled. Before, man(7) only reported a WARNING (which is dangerous because we cannot be sure rendering is correct) and mdoc(7) ran into FATAL (which is too drastic, there is no reason not to show what we have). While here, add a few explicit casts to appease lint. "looks good" kristaps@
2010-09-26sync to bsd.lv:Ingo Schwarze
do not talk about \s, it is ignored anyway do not .Xr groff(1) any longer, just talk about GNU troff because in the long run, groff may not even be installed
2010-09-26consolidate all enclosure opening and closing functionsIngo Schwarze
to help code comprehension and reduce code size also remove redundant TERMP_NOSPACE here and there from kristaps@
2010-09-26Modify the permissions on the socket when adding or removing +x to showNicholas Marriott
attached sessions, rather than replacing them.
2010-09-26no punctuation after .%* outside .RsIngo Schwarze
in .Rs, mark full stops after .%* as end of a sentence from kristaps@
2010-09-26add a "mips64" architecture; requested by/ok miodJason McIntyre
2010-09-25detach-on-destroy is a session option, not server.Nicholas Marriott
2010-09-25make use of new glob(3) GLOB_KEEPSTAT extension to save extra serverDamien Miller
rountrips to fetch per-file stat(2) information.
2010-09-24-M and -N are posix extensions too; from Joachim SchipperJason McIntyre