Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-16 | Move comments into a block and uses {} to unconfuse reading. | Theo de Raadt | |
2017-04-16 | Statistics for high memory flips in the buffer cache | Bob Beck | |
nits from deraadt@ ok krw@ guenther@ kettenis@ | |||
2017-04-16 | remove -g from CFLAGS at florian's request | Jonathan Gray | |
2017-04-16 | Different compilers and versions of compilers have different warnings. | Jonathan Gray | |
Remove -Werror to give code a greater chance of building. ok deraadt@ florian@ | |||
2017-04-14 | Show long .Lk URIs in like an indented display, similar to groff. | Ingo Schwarze | |
Suggested by bentley@. | |||
2017-04-14 | Do not make the colon after the .Lk link text italic. | Ingo Schwarze | |
I just pushed the same change to GNU troff. | |||
2017-04-12 | isblank() is ANSI C since C99, no need to provide a replacement. | Todd C. Miller | |
OK deraadt@ | |||
2017-04-12 | bluhm discovered "script < /dev/null" attempts tty operations in violation | Theo de Raadt | |
of pledge. We can wrap isatty() around those codepaths. ok bluhm beck | |||
2017-04-06 | a little const here and there to prevent rules from changing | Ted Unangst | |
2017-04-06 | prepenv can take a const rule | Ted Unangst | |
2017-04-05 | Clamp size to length if snprintf ever indicates overflow | Theo de Raadt | |
w/ millert | |||
2017-04-05 | Add Home and End for copy mode. | Nicholas Marriott | |
2017-04-05 | Try again to resolve problems with mistaking sessions for windows: now | Nicholas Marriott | |
do not look up windows as sessions (and panes as windows) when they are qualified with a ':' or a '.'. So 'foo' as a window target will look for windows and sessions called 'foo', but ':foo' will only look for windows, and 'foo:' only for sessions. This means the common case of using an unadorned session as a window target (send -tfoo) should continue to work, but an explicit window will not get confused with a session (send -t:foo). | |||
2017-04-05 | Give each client a name. This defaults to the tty name as before but | Nicholas Marriott | |
falls back to an alternative if the tty name is not available. This is clearer than overloading the client ttyname member and allows us to remove the path stored in the tty struct, it should always be the same as the client. | |||
2017-04-05 | cfg_file can be static. | Nicholas Marriott | |
2017-04-05 | Change tty_repeat_space to write large sets of spaces together instead | Nicholas Marriott | |
of writing them individually. | |||
2017-04-05 | - -Z before -z in options list | Jason McIntyre | |
- add -Z to help and usage() | |||
2017-04-05 | an annoying whitespace glitch | Theo de Raadt | |
2017-04-05 | Allow nc to save the peer certificate and chain in a pem file specified | Bob Beck | |
with -Z ok jsing@ | |||
2017-04-04 | disallow creation (of empty files) in read-only mode; reported by | Damien Miller | |
Michal Zalewski, feedback & ok deraadt@ | |||
2017-04-03 | initialize regmatch_t always, fixes grep -o "" | Ted Unangst | |
from Michael Santos | |||
2017-04-02 | The character buffer should be resized using recallocarray() | Theo de Raadt | |
ok millert and nicm a while ago | |||
2017-04-02 | update currency exchange rates; | Jason McIntyre | |
2017-04-02 | Replace snprintf(NULL, malloc, snprintf.... with the much better asprintf. | Theo de Raadt | |
ok millert | |||
2017-04-02 | Make dma range buffer cache pages visible in systat io | Bob Beck | |
ok deraadt@ | |||
2017-03-28 | Prevent edit'ing a message from corrupting the mailbox. In an mbox file | Martin Natano | |
every message is terminated by an empty line, so we have to make sure it is preserved. Otherwise the message is combined with the next one. joint effort with deraadt and millert | |||
2017-03-27 | simplify the SYNOPSIS as well, just like the option lists; | Ingo Schwarze | |
suggested by and OK jmc@ | |||
2017-03-27 | For some options that are rarely needed in mandoc(1), | Ingo Schwarze | |
delete the descriptions and point to man(1) instead. Inspired by apropos.1 rev. 1.35. | |||
2017-03-27 | Simplify: mention at one place that -fkl override each other, | Ingo Schwarze | |
rather than stating it separately for each option. Suggested, OKed, and tweaked by jmc@. | |||
2017-03-26 | Change a reallocarray+bzero into recallocarray. | Martijn van Duren | |
OK tb@ and deraadt@ | |||
2017-03-26 | One string buffer can use recallocarray() to ensure that the address space | Theo de Raadt | |
doesn't get dribbled with known contents. ok otto millert tobias | |||
2017-03-26 | incorrect renditions of this quote bother me | Theo de Raadt | |
2017-03-25 | parameter "lines_allocated" is a local pointer and should not be confused | Theo de Raadt | |
with the global by the same name, so rename it "lines_allocatedp". | |||
2017-03-25 | For some options that are rarely needed in apropos(1) and man(1), | Ingo Schwarze | |
delete the verbose descriptions and point to man(1) and mandoc(1), respectively, instead. That shortens the pages and makes them easier to read. Tweaks and OK jmc@, based in part on ideas from tedu@. | |||
2017-03-24 | Use the right header sizes for reading .aiff and .au files, ok ratchov | Nicholas Marriott | |
2017-03-24 | Write raw strings in one go rather than character at a time. | Nicholas Marriott | |
2017-03-24 | Show count of search results in copy mode. | Nicholas Marriott | |
2017-03-22 | simplify description of -S and -w, point from EXIT STATUS | Ingo Schwarze | |
to mandoc(1) for details, and remove duplicate .Xr to whatis(1); OK jmc@ | |||
2017-03-22 | Add support for the strikethrough attribute (SGR 9), using the new smxx | Nicholas Marriott | |
terminfo capability. This means there are now nine attribute bits, so anything above 0xff uses an extended cell. | |||
2017-03-21 | Use uid_t for UID not u_int. | Nicholas Marriott | |
2017-03-21 | simplify .Nd; to display manuals, use man(1) instead; | Ingo Schwarze | |
OK jmc@ | |||
2017-03-21 | delete documentation of a hack that was removed years ago | Ingo Schwarze | |
2017-03-21 | Fix movement after select-line, from Omar Sandoval. | Nicholas Marriott | |
2017-03-21 | Fix pane movement by direction (up, down, left, right) when | Nicholas Marriott | |
pane-border-status is set, from KOIE Hidetaka. | |||
2017-03-20 | recallocarray array that has remote data | Theo de Raadt | |
2017-03-20 | simplify example. list of ports variables was non-exahustive, which means | Ted Unangst | |
what exactly? there should be a better place for such lists. | |||
2017-03-20 | Silently ignore invalid -m input formats rather than erroring out. | Ingo Schwarze | |
As observed by Jan Stary <hans at stare dot cz>, this is useful such that after 'alias man="man -m $HOME/man"', 'man -l foo.1' still works. Simplify and shorten the description of -m, and use .Ic for macros. | |||
2017-03-20 | openssh-7.5 | Damien Miller | |
2017-03-19 | expand TAO in the correct place; from michael reed | Jason McIntyre | |
this commit differs a little from the diff michael posted: - i've uppercased the expansion, which seems a better fit - reworked a later description to fit | |||
2017-03-18 | Correct description of MANPATH, and a few more improvements | Ingo Schwarze | |
to the ENVIRONMENT section; OK jmc@ |