summaryrefslogtreecommitdiffstats
path: root/usr.bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Update awk to Feb 28, 2020 version.millert2020-06-109-253/+422
|
* Update awk to Jan 31, 2020 version.millert2020-06-1011-54/+120
|
* Update awk to Jan 5, 2020 version.millert2020-06-108-132/+175
|
* Update awk to Nov 10, 2019 version.millert2020-06-1010-104/+130
|
* Update awk to Oct 24, 2019 version.millert2020-06-1011-197/+204
|
* Update awk to Oct 17, 2019 version.millert2020-06-105-110/+125
|
* Update awk to Oct 6, 2019 version.millert2020-06-106-33/+143
|
* Update awk to Sep 10, 2019 version.millert2020-06-1013-129/+196
|
* Update awk to Jun 17, 2019 version.millert2020-06-106-10/+52
|
* Update awk to March 5, 2019 version.millert2020-06-106-19/+277
|
* Update awk to Jan 25, 2019 version.millert2020-06-108-56/+113
|
* Update awk to Oct 25, 2018 version.millert2020-06-103-4/+11
| | | | | Add test in maketab.c to prevent generating a proctab entry for YYSTYPE_IS_DEFINED.
* Update awk to Aug 27, 2018 version.millert2020-06-104-13/+19
| | | | | Disallow '$' in printf formats Added some casts to silence warnings on debugging printfs.
* Update awk to Aug 23, 2018 version.millert2020-06-1011-44/+293
|
* Update awk to Jan 5, 2013 version, no real code changes.millert2020-06-103-14/+31
|
* Instead of a buffer size limit on each pane, set a limit of 300 secondsnicm2020-06-105-47/+105
| | | | of data for each client in control mode.
* When the pause-after flag is set, send an alternative %extended-outputnicm2020-06-102-9/+31
| | | | form instead of %output with the age of the output.
* Refuse to remove locked revisions with rcs -orange.joris2020-06-091-1/+9
| | | | | | | Otherwise we could leave behind a lock for a revision that no longer exists, breaking the RCS file. Reported via bugs@ by bernward.pub@arcor.de
* Include width in error message.nicm2020-06-091-2/+2
|
* It is not sensible to store pointers into an array we are going tonicm2020-06-091-47/+54
| | | | realloc (duh), use two trees instead.
* The errcheck() function treats an errno of ERANGE or EDOM as somethingguenther2020-06-081-3/+11
| | | | | | | | | | | | to report, so make sure errno is set to zero before invoking a function to check so that a previous such errno value won't result in a false positive. This could happen simply due to input line fields that looked enough like floating-point input to trigger ERANGE. Problem noted by Jordan Geoghegan (jordan (at) geoghegan.ca), with clue from Ze' Loff (zeloff (at) zeloff.org) ok millert@
* Use bitshifts instead of a union for encoding UTF-8 into 32 bits, whichnicm2020-06-061-59/+34
| | | | | | is more friendly to GCC3. Reported by and ok aoyama@.
* Change how panes are resized so that the code is clearer and if the panenicm2020-06-054-82/+84
| | | | | | is resized multiple times during one event loop, it is forced to resize at the end. Also don't zoom/unzoom in switch-client if the pane hasn't changed. GitHub issue 2260.
* Do not take the address of a potentially unaligned member.nicm2020-06-051-2/+5
|
* Fix various confusion about am vs xenl.nicm2020-06-053-20/+25
|
* Now that we mostly only search visible text, the rate limit on repeatingnicm2020-06-051-13/+1
| | | | search does not seem to be necessary, remove it for the moment.
* Add support for pausing a pane when the output buffered for a controlnicm2020-06-056-46/+145
| | | | | | mode client gets too far behind. The pause-after flag with a time is set on the pane with refresh-client -f and a paused pane may be resumed with refresh-client -A. GitHub issue 2217.
* unbreak "sshd -ddd" - close of config passing fd happened too early.djm2020-06-051-2/+1
| | | | ok markus@
* make sshbuf_putb(b, NULL) a no-opdjm2020-06-051-1/+3
|
* make sshbuf_dump() args constdjm2020-06-052-4/+4
|
* wrap long linedjm2020-06-051-2/+3
|
* Correct historical comment: provos@ modified OpenSSH to work with SSLeaydtucker2020-06-051-2/+2
| | | | | (very quickly replaced by OpenSSL) not SSL in general. ok deraadt, historical context markus@
* Reset wrapped flag when clearing or moving lines, GitHub issue 2215.nicm2020-06-041-1/+8
|
* Search marks outside the visible text are not useful, so there is nonicm2020-06-041-17/+35
| | | | | point in allocating a big buffer to store them - just allocate the visible text size, and ignore any outside.
* Some improvements to performance of searching:nicm2020-06-041-53/+87
| | | | | | | | | | | | | | - Do not allow searches to be repeated at intervals of less than 50 milliseconds, to prevent a huge queue of repeat key presses blocking up everything for ages. - If the search text hasn't changed, the match count can't have changed and there is no need to do a full search, so only search the visible text. This includes both scrolling and repeating the search. - Do not redraw twice when jumping to the search location. GitHub issue 2258.
* A } can go on the same line as a command.nicm2020-06-041-2/+4
|
* Shorten some long lines.nicm2020-06-041-6/+11
|
* Correct respawn-* - they don't always use the creation command.nicm2020-06-041-3/+5
|
* Make the -no-clear command variants not clear the search marks either.nicm2020-06-041-73/+83
|
* Allow strings to span multiple lines - newlines and any leadingnicm2020-06-041-19/+24
| | | | | | whitespace are removed, as well as any following comments that couldn't be part of a format. This allows long formats or other strings to be annotated and indented.
* Instead of using a custom parse function to process {}, treat it as anicm2020-06-044-165/+90
| | | | | | | set of statements and parse with yacc, then convert back to a string as the last step. This means the rules are consistent inside and outside {}, %if and friends work at the right time, and the final result isn't littered with unnecessary newlines.
* Make paste -p the default for ], GitHub issue 2248.nicm2020-06-031-2/+2
|
* somehow, when I used more bool, I forgot to check with WARNINGS=Yesespie2020-06-031-2/+2
| | | | | | no reason for those types to have different return types, all compilers are slightly unhappy with incompatible function pointers (again, obvious commit, no difference in generated code)
* Init_Sigset() isn't a prototype without the void!espie2020-06-031-2/+2
| | | | obvious warning fix
* Import regenerated moduli file.dtucker2020-06-036-413/+452
|
* Move the code to set up a padding cell into grid.c.nicm2020-06-025-17/+38
|
* Allow UTF-8 characters of width 0 to be stored, it is useful to be ablenicm2020-06-024-38/+32
| | | | to put padding cells in as width 0.
* Missing ; in previous.nicm2020-06-021-2/+2
|
* Fire copy-pipe command even if there is no text, means it works if itnicm2020-06-021-5/+6
| | | | has side effects.
* UTF-8 keys need to be big endian so the size bits are at the top.nicm2020-06-021-6/+6
|