Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Update awk to Feb 28, 2020 version. | 2020-06-10 | 9 | -253/+422 | ||
| | ||||||
* | Update awk to Jan 31, 2020 version. | 2020-06-10 | 11 | -54/+120 | ||
| | ||||||
* | Update awk to Jan 5, 2020 version. | 2020-06-10 | 8 | -132/+175 | ||
| | ||||||
* | Update awk to Nov 10, 2019 version. | 2020-06-10 | 10 | -104/+130 | ||
| | ||||||
* | Update awk to Oct 24, 2019 version. | 2020-06-10 | 11 | -197/+204 | ||
| | ||||||
* | Update awk to Oct 17, 2019 version. | 2020-06-10 | 5 | -110/+125 | ||
| | ||||||
* | Update awk to Oct 6, 2019 version. | 2020-06-10 | 6 | -33/+143 | ||
| | ||||||
* | Update awk to Sep 10, 2019 version. | 2020-06-10 | 13 | -129/+196 | ||
| | ||||||
* | Update awk to Jun 17, 2019 version. | 2020-06-10 | 6 | -10/+52 | ||
| | ||||||
* | Update awk to March 5, 2019 version. | 2020-06-10 | 6 | -19/+277 | ||
| | ||||||
* | Update awk to Jan 25, 2019 version. | 2020-06-10 | 8 | -56/+113 | ||
| | ||||||
* | Update awk to Oct 25, 2018 version. | 2020-06-10 | 3 | -4/+11 | ||
| | | | | | Add test in maketab.c to prevent generating a proctab entry for YYSTYPE_IS_DEFINED. | |||||
* | Update awk to Aug 27, 2018 version. | 2020-06-10 | 4 | -13/+19 | ||
| | | | | | Disallow '$' in printf formats Added some casts to silence warnings on debugging printfs. | |||||
* | Update awk to Aug 23, 2018 version. | 2020-06-10 | 11 | -44/+293 | ||
| | ||||||
* | Update awk to Jan 5, 2013 version, no real code changes. | 2020-06-10 | 3 | -14/+31 | ||
| | ||||||
* | Instead of a buffer size limit on each pane, set a limit of 300 seconds | 2020-06-10 | 5 | -47/+105 | ||
| | | | | of data for each client in control mode. | |||||
* | When the pause-after flag is set, send an alternative %extended-output | 2020-06-10 | 2 | -9/+31 | ||
| | | | | form instead of %output with the age of the output. | |||||
* | Refuse to remove locked revisions with rcs -orange. | 2020-06-09 | 1 | -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. | 2020-06-09 | 1 | -2/+2 | ||
| | ||||||
* | It is not sensible to store pointers into an array we are going to | 2020-06-09 | 1 | -47/+54 | ||
| | | | | realloc (duh), use two trees instead. | |||||
* | The errcheck() function treats an errno of ERANGE or EDOM as something | 2020-06-08 | 1 | -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, which | 2020-06-06 | 1 | -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 pane | 2020-06-05 | 4 | -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. | 2020-06-05 | 1 | -2/+5 | ||
| | ||||||
* | Fix various confusion about am vs xenl. | 2020-06-05 | 3 | -20/+25 | ||
| | ||||||
* | Now that we mostly only search visible text, the rate limit on repeating | 2020-06-05 | 1 | -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 control | 2020-06-05 | 6 | -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. | 2020-06-05 | 1 | -2/+1 | ||
| | | | | ok markus@ | |||||
* | make sshbuf_putb(b, NULL) a no-op | 2020-06-05 | 1 | -1/+3 | ||
| | ||||||
* | make sshbuf_dump() args const | 2020-06-05 | 2 | -4/+4 | ||
| | ||||||
* | wrap long line | 2020-06-05 | 1 | -2/+3 | ||
| | ||||||
* | Correct historical comment: provos@ modified OpenSSH to work with SSLeay | 2020-06-05 | 1 | -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. | 2020-06-04 | 1 | -1/+8 | ||
| | ||||||
* | Search marks outside the visible text are not useful, so there is no | 2020-06-04 | 1 | -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: | 2020-06-04 | 1 | -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. | 2020-06-04 | 1 | -2/+4 | ||
| | ||||||
* | Shorten some long lines. | 2020-06-04 | 1 | -6/+11 | ||
| | ||||||
* | Correct respawn-* - they don't always use the creation command. | 2020-06-04 | 1 | -3/+5 | ||
| | ||||||
* | Make the -no-clear command variants not clear the search marks either. | 2020-06-04 | 1 | -73/+83 | ||
| | ||||||
* | Allow strings to span multiple lines - newlines and any leading | 2020-06-04 | 1 | -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 a | 2020-06-04 | 4 | -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. | 2020-06-03 | 1 | -2/+2 | ||
| | ||||||
* | somehow, when I used more bool, I forgot to check with WARNINGS=Yes | 2020-06-03 | 1 | -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! | 2020-06-03 | 1 | -2/+2 | ||
| | | | | obvious warning fix | |||||
* | Import regenerated moduli file. | 2020-06-03 | 6 | -413/+452 | ||
| | ||||||
* | Move the code to set up a padding cell into grid.c. | 2020-06-02 | 5 | -17/+38 | ||
| | ||||||
* | Allow UTF-8 characters of width 0 to be stored, it is useful to be able | 2020-06-02 | 4 | -38/+32 | ||
| | | | | to put padding cells in as width 0. | |||||
* | Missing ; in previous. | 2020-06-02 | 1 | -2/+2 | ||
| | ||||||
* | Fire copy-pipe command even if there is no text, means it works if it | 2020-06-02 | 1 | -5/+6 | ||
| | | | | has side effects. | |||||
* | UTF-8 keys need to be big endian so the size bits are at the top. | 2020-06-02 | 1 | -6/+6 | ||
| |