summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2017-05-15The Konsole SU bug means it can't clear the entire scroll region (itNicholas Marriott
ignores if >= size, not if > as I first thought). So we can't effectively fix it in code - remove the workarounds which just cause bugs on other terminals.
2017-05-14warn about punctuation between .Xr and .Rs in SEE ALSO;Ingo Schwarze
inspired by mdoclint
2017-05-14Tweak previous: tb@ noticed that some browser/font combinationsIngo Schwarze
have so amazingly wide bold fonts (for the same nominal font size) that adding 15% to the column width still isn't sufficient to make text reliably fit, so go for 20%.
2017-05-13Scroll the right number of lines off the region when clearing.Nicholas Marriott
2017-05-13Some other unused variables.Nicholas Marriott
2017-05-12Compare >= for columns not >.Nicholas Marriott
2017-05-12Can scroll away full lines to clear them too.Nicholas Marriott
2017-05-12Remove an unused variable.Nicholas Marriott
2017-05-12Reset updated flag when restarting job so new output is detected,Nicholas Marriott
reported by Gregory Pakosz in GitHub issue 922.
2017-05-12Make the tag column in .Bl -tag lists wider:Ingo Schwarze
1. I forgot about the 2n padding between tag and body. 2. The factor 1.1 was too small for bold fold, make it *1.15 + 1n. Ugliness spotted by tb@.
2017-05-12Fix the man.cgi target after the recent file additions;Ingo Schwarze
this didn't break the build because it's not built by default.
2017-05-12When expanding a line in order to clear it, we need to use the defaultNicholas Marriott
background colour - there may be portions that we do not want to clear with the new background colour.
2017-05-12Need to store bg for ECH.Nicholas Marriott
2017-05-12Cannot rely on cursor position after DL and IL (some terminals move toNicholas Marriott
column 0, some do not).
2017-05-12Need to clear tty context before using it.Nicholas Marriott
2017-05-12Only redraw single client, and tweak some logging.Nicholas Marriott
2017-05-12Scrolling needs to use background colour.Nicholas Marriott
2017-05-12Regions can't be smaller than 2 so don't try to clear them by scrolling if so.Nicholas Marriott
2017-05-12Can use INDN to clear regions with default background colour if marginsNicholas Marriott
are supported.
2017-05-12ECH needs to use background colour.Nicholas Marriott
2017-05-12Can use DECFRA to clear area when not using default background.Nicholas Marriott
2017-05-12Store copy mode search string in pane so search-again command works evenNicholas Marriott
if you exit and reenter copy mode (it doesn't remember the position, just the search string), suggested by espie@.
2017-05-11Fix the index check in the FNKEY macro. This is only used whenTodd C. Miller
restricting the output to a version usable on AIX or HP-UX. OK tb@
2017-05-11Clear to start of screen needs to use background colour.Nicholas Marriott
2017-05-11Need to redraw out to cellsize (total cells used in a line) rather thanNicholas Marriott
cellused (only non-space cells) because there may be cells with a nondefault background.
2017-05-11Make environ_log prefix take a format.Nicholas Marriott
2017-05-11Change how we resolve which pane is dragging when there are multipleNicholas Marriott
options - choose the largest pane, which is more likely to be the one the user wants to resize. Prompted by a report from Thomas Sattler.
2017-05-10Implement nc -W recvlimit to terminate netcat after receiving aAlexander Bluhm
number of packets. This allows to send a UDP request, receive a reply and check the result on the command line. input jmc@; OK millert@
2017-05-10Move to the right cursor position before using spaces to clear.Nicholas Marriott
2017-05-10Prevent control clients from affecting the session size until they haveNicholas Marriott
specified a size with refresh-client -C. Prompted by a different change with the same purpose from George Nachman.
2017-05-10We can use ECH to clear sections of lines, so use it for internal panesNicholas Marriott
(that don't touch an edge). Move all the tty clear code into two common functions rather than having the same bunch of checks everywhere.
2017-05-10Expand formats in option names and add -F flag to do so in option values as ↵Nicholas Marriott
well.
2017-05-10Insert copy mode bindings at the right place in the command queue.Nicholas Marriott
2017-05-10Explain about 0x0 PCB addresses in fstat(1) output. Suggestions/ok bluhm@ jmc@Stuart Henderson
2017-05-10There's no difference between short and long sleepers, so just printMartin Pieuchot
their number. While here print the amount of memory in M instead of K to make the output fit it 80 columns. Reminded by tb@, ok visa@
2017-05-09If the target pane for send-keys in in a mode with a key table (that is,Nicholas Marriott
copy mode), then look the key up in the table and fire any command instead of delivering the key to the pane directly where it will be ignored. This makes C-b C-b (send-prefix) work in copy mode again.
2017-05-09Trailing \c suppresses the output line break even ifIngo Schwarze
the next line is a text line starting with whitespace. Quirk found in the sysutils/rancid port.
2017-05-09If the current screen was complex enough, it was possible to make redrawNicholas Marriott
itself hit the "terminal can't keep up" check. To avoid this, record how much data we send during redraw (we know we will be starting with 0) and skip the check until it has been flushed. GitHub issue 912.
2017-05-09Set current pane in rotate-window.Nicholas Marriott
2017-05-08remove hmac-ripemd160; ok dtuckerDamien Miller
2017-05-08simplify startdate/enddate validationBob Beck
ok jsing@
2017-05-08Line-breaking roff(7) requests also break man(7) next-line scope.Ingo Schwarze
Considering that real roff implements next-line scope using input line traps, that isn't all that surprising. Issue found in the games/xbattle port.
2017-05-08Basic implementation of the roff(7) .ti (temporary indent) request.Ingo Schwarze
Needed by about four dozen ports (thanks to naddy@ for the research).
2017-05-08Make netstat(8) always ask for IPv6 multicast routing information. WorstRafael Zalamena
case is that we get an empty response instead of a message saying that there is no multicast support. ok mpi@
2017-05-08make requesting bad ECDSA bits yield the same error (SSH_ERR_KEY_LENGTH)Damien Miller
as the same mistake for RSA/DSA
2017-05-08helps if I commit the correct version of the file. fix missingDamien Miller
return statement.
2017-05-08I was too aggressive with the scalpel in the last commit;Damien Miller
unbreak sshd, spotted quickly by naddy@
2017-05-07Refuse RSA keys <1024 bits in length. Improve reporting for keys thatDamien Miller
do not meet this requirement. ok markus@
2017-05-07Don't offer CBC ciphers by default in the client. ok markus@Damien Miller
2017-05-07As promised in last release announcement: remove support forDamien Miller
Blowfish, RC4 and CAST ciphers. ok markus@ deraadt@