summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2019-04-28Support multiple occurances of the same argument. Use this for a newNicholas Marriott
flag -e to new-window, split-window, respawn-window, respawn-pane to pass environment variables into the newly created process. From Steffen Christgau in GitHub issue 1697.
2019-04-28Fix reading route entries via kvm(3).Martin Pieuchot
From Naoki Fukaumi, ok yasuoka@, sthen@
2019-04-27Only apply sign extension when less than eight bytes have been consumed. Thisrob
fixes a problem when handling large negative integers. ok claudio@
2019-04-26There was an extra newline in some cases and missing one in others.Todd C. Miller
OK joris@
2019-04-26Merge hooks into options and make each one an array option. This allowsNicholas Marriott
multiple commands to be easily bound to one hook. set-hook and show-hooks remain but they are now variants of set-option and show-options. show-options now has a -H flag to show hooks (by default they are not shown).
2019-04-26Destroy panes before options to avoid crash when forced into a mode by aNicholas Marriott
hook.
2019-04-26Unbreak main-vertical and main-horizontal layouts.Nicholas Marriott
2019-04-26Import regenerated moduli.Darren Tucker
2019-04-25options_array_item_value cannot return NULL.Nicholas Marriott
2019-04-25Need a fallback for -2 for aixterm colours.Nicholas Marriott
2019-04-25Make options_tostring allocate its result instead of using a stackNicholas Marriott
buffer (needed for something in the future).
2019-04-25Need to escape ].Nicholas Marriott
2019-04-25Automatically scroll if dragging to create a selection with the mouseNicholas Marriott
and the cursor reaches the top or bottom line.
2019-04-24Use bg not fg when adjusting for aixterm, from Ailin Nemui.Nicholas Marriott
2019-04-24Use setaf/setab for aixterm colours, from Ailin Nemui.Nicholas Marriott
2019-04-24Do not loop forever if there is a nonprintable character in the format.Nicholas Marriott
2019-04-24new manual page rcsfile(5)Ingo Schwarze
written by Fabio Scotoni <fabio at esse dot ch> with minimal tweaks by me OK jmc@ deraadt@ millert@ on an earlier version
2019-04-23Somehow missed these bits in last commit.Nicholas Marriott
2019-04-23Indicate an array option with a flag rather than a special type so thatNicholas Marriott
in future will not have to be strings.
2019-04-23missing dots after ".%P pp"; the case of btree(3) wasIngo Schwarze
reported by Fabio Scotoni <fabio at esse dot ch>; also garbage collect one .Tn while here
2019-04-23add some missing "pp." to .%P macros;Ingo Schwarze
Fabio Scotoni <fabio at esse dot ch> reported it was missing in eqn(7)
2019-04-23Use the LogLevel typdef instead of int where appropriate. Patch fromDarren Tucker
Markus Schmidt via openssh-unix-dev, ok markus@
2019-04-23Add -no-clear variants of copy-selection and copy-pipe which do notNicholas Marriott
clear the selection after copying. Make copy-pipe clear the selection by default to be consistent with copy-selection. From Avi Halachmi.
2019-04-23Do not try to resize if the parent cell is NULL, problem reported byNicholas Marriott
Sunil Nimmagadda.
2019-04-22fix thinko from tb@'s commit.Marc Espie
okay tb@
2019-04-21When calling an empty macro, do not clobber existing arguments.Ingo Schwarze
Fixing a bug found with the groffer(1) version 1.19 manual page following a report from Jan Stary.
2019-04-21Implement the roff .break request (break out of a .while loop).Ingo Schwarze
Jan Stary <hans at stare dot cz> found it in an ancient groffer(1) manual page (version 1.19) on MacOS X Mojave. Having .break not implemented wasn't a particularly bright idea because obviously, it tended to cause infinite loops.
2019-04-21pledge "stdio" after opening file and before doing operationsTheo de Raadt
from Rafael Neves
2019-04-20The rip6 checksum errors are accounted per socket. So the no socketAlexander Bluhm
errors include these, do not subtract both from delivered. Avoids an underflow in the rip6 delivered counter. OK deraadt@ claudio@
2019-04-19Document new default RSA key size. From sebastiaanlokhorst at gmail.comDarren Tucker
via bz#2997.
2019-04-18When running sshd -T, assume any attibute not provided by -C does not match,Darren Tucker
which allows it to work when sshd_config contains a Match directive with or without -C. bz#2858, ok djm@
2019-04-18Copy the code to infer the option type to show-options and document it.Nicholas Marriott
2019-04-18Pass target client and session to load_cfg from source-file so formatsNicholas Marriott
work. Reported by Thomas Sattler.
2019-04-18Update session activity on focus event, from tafryn at gmail dot com.Nicholas Marriott
2019-04-18Remove crc32.{c,h} which were only used by the now-gone SSH1 protocol.Darren Tucker
Patch from yumkam at gmail.com, ok deraadt.
2019-04-17signpost the location of the text explaining routing table output a little ↵Jason McIntyre
better...
2019-04-17remove some unneccessary baggage: Nm does not require an argument,Jason McIntyre
and the Bk/Ek invocation here is no longer neccessary;
2019-04-17mark up punctuation-as-macro-args properly;Jason McIntyre
2019-04-17Fix minimum size check on split and size of first cell on spread outNicholas Marriott
with a pane status line.
2019-04-17Rewrite main-vertical and horizontal to use the common spread out codeNicholas Marriott
and to handle the case where the panes won't fit into the existing window size.
2019-04-17Set the window size as well as the layout size when using the presetNicholas Marriott
layouts.
2019-04-17Do not let the size of the pane status screen go negative.Nicholas Marriott
2019-04-17Document that switch-client can change all of session,window,pane andNicholas Marriott
check for % in the target as well as ":.".
2019-04-17Break new window and pane creation common code from various commands andNicholas Marriott
window.c into a separate file spawn.c.
2019-04-14path to i915_drm.h has changedJonathan Gray
2019-04-08select-word was missing from the command list, from pawel-slowik.Nicholas Marriott
2019-04-07Current window style also needs to be tested for default.Nicholas Marriott
2019-04-05Fix some warnings, from Thomas Adam.Nicholas Marriott
2019-04-04Fix size check for splitw -f and top level pane size for tiled layout,Nicholas Marriott
problems reported by Thomas Sattler.
2019-04-04Add support for not crossing filesystem boundaries (-x) to rsync. Optionbket
and behaviour is the same as GPL rsync. Initial diff received feedback from benno@, schwarze@, deraadt@ and florian@. Thanks! OK deraadt@