Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-22 | Do not treat comma as part of the command modifier. | anton | |
ok schwarze@ | |||
2017-07-31 | Silence some warnings generated by clang. | Martijn van Duren | |
Original diff by espie@ with some minor tweaks by myself. OK espie@ and florian@ | |||
2017-07-20 | Replace usage of strtol() with strtonum(). | anton | |
ok bentley@ deraadt@ millert@ tb@ | |||
2017-07-05 | avoid double space caused by end-of-sentence detection; requested by jmc@ | Ingo Schwarze | |
2017-07-05 | nits about trailing punctuation found with mandoc -Tlint | Ingo Schwarze | |
2017-07-03 | markup fixes; | Jason McIntyre | |
2017-07-03 | Remove settings that were unimplemented for 20 years; update STANDARDS. | Anthony J. Bentley | |
ok jmc@ natano@ | |||
2017-06-30 | Add mdoc(7) macros to vi's built-in lists of roff paragraph/section macros. | Anthony J. Bentley | |
ok jmc@, no objection schwarze@ | |||
2017-06-24 | Fix a check in ADD_SPACE_{GOTO,RET} that potentially allowed for a | Martijn van Duren | |
NULL-dereference. OK tom@ | |||
2017-06-20 | Better document the :s ex command and its variants. | Anthony J. Bentley | |
ok jmc@ | |||
2017-06-15 | "10th's of a second" -> "tenths of a second" | Anthony J. Bentley | |
ok jmc@ | |||
2017-06-12 | Use openat() and unlinkat() instead of chdir()ing to the recovery dir. | Todd C. Miller | |
Since we use flock() and not fcntl() locking we can open the recovery file read-only. OK martijn@ | |||
2017-04-26 | Remove extraneous ", NULL" in the assignment of msgstr which was | Todd C. Miller | |
leftover from when msg_cat() was removed. From Anton Lindqvist | |||
2017-04-18 | free(NULL) is ok so use it; from Michael W. Bombardieri | Theo de Raadt | |
2017-01-20 | Nuke some excess whitespace. | Kenneth R Westerback | |
2016-12-18 | Use %zu/%d to print size_t/ssize_t. Cast recno_t (a.k.a. u_int32_t) | Kenneth R Westerback | |
to (unsigned long) to match %lu formats. Makes gcc happier and quieter. ok deraadt@ | |||
2016-12-18 | Nuke more unused variables. | Kenneth R Westerback | |
ok millert@ | |||
2016-11-05 | Remove syscall.ph from vi.recover | Andrew Fresh | |
since perl-5.10 chdir supports fchdir ok guenther@ | |||
2016-09-02 | Fix the begin of word issue in vi(1). | Martijn van Duren | |
Similar fix went in sed and ed. Feedback and OK schwarze@ | |||
2016-08-27 | Pull in <sys/time.h> for struct timespec and timeval | Philip Guenther | |
ok deraadt@ | |||
2016-08-14 | Kill '#if defined(DEBUG) && 0' blocks that used %q | Philip Guenther | |
ok bentley@ on principle | |||
2016-08-08 | /tmp and /var/tmp are the same, consistently use the former in both | Igor Sobrado | |
build/recover and documentation. ok millert@, tb@, martijn@ and schwarze@ | |||
2016-08-01 | Remove vi's "directory" option and TMPDIR support. | Anthony J. Bentley | |
ok jung@ | |||
2016-07-07 | biff, mesg, vi: only consider ACCESSPERMS for setting tty mode. | Sebastien Marie | |
it explicitly removes any S_ISUID|S_ISGID|S_ISTXT bits, instead of letting pledge(2) silenciously remove them. ok beck@ deraadt@ | |||
2016-06-29 | If /tmp/vi.recover doesn't exist, don't create it. Warn once | Theo Buehler | |
that it doesn't exist, afterwards fail silently. ok millert | |||
2016-05-28 | Test if stdin is a terminal before resetting the tty state. | Martijn van Duren | |
Diff supplied by Kai Antweiler. OK semarie@ and deraadt@ | |||
2016-05-27 | Revert CHAR_T removal. Some signedness flaws were introduced. | Martijn van Duren | |
Found the hard way by jca@ | |||
2016-05-07 | Free memory if realloc fails. The application is most likely to terminate after | Martijn van Duren | |
a failure, but if it does not we better clean up after ourselfs. OK deraadt@ and stefan@ | |||
2016-05-05 | Remove __sigblockset. This is a leftover after the removal of the signal | Martijn van Duren | |
blocking code in common/gs.h rev 1.14. Remove a redundant return while here. OK millert@ | |||
2016-05-02 | Remove pointless comment. getcwd(3) is safe. | Martijn van Duren | |
OK millert@ | |||
2016-05-02 | Remove CHAR_T in favor of native types. | Martijn van Duren | |
schwarze@ agrees with the direction. Few tweaks and OK tb@ | |||
2016-04-20 | Remove pointless reenter variable. | Martijn van Duren | |
OK millert@ | |||
2016-04-19 | Remove not implemented decliration of sscr_pty. | Martijn van Duren | |
2016-04-19 | Remove some useless code. | Martijn van Duren | |
Minor tweak and OK schwarze@ OK tb@ | |||
2016-03-30 | for some time now mandoc has not required MLINKS to function | Jason McIntyre | |
correctly - logically complete that now by removing MLINKS from base; authors need only to ensure there is an entry in NAME for any function/ util being added. MLINKS will still work, and remain for perl to ease upgrades; ok nicm (curses) bcook (ssl) ok schwarze, who provided a lot of feedback and assistance ok tb natano jung | |||
2016-03-19 | By issuing :e +something in vi(1) this uncovers a backwards memcpy with the | mestre | |
code because the 2 buffers overlap and in order to solve it then replace memcpy(3) call by memmove(3) Issue noticed by Michael Price <michael at ectospheno dot com> who also tested this diff OK deraadt@ | |||
2016-03-17 | Add error checking for COLUMNS/LINES environment variables. | Anthony J. Bentley | |
It would be better to replace all the complicated existing code with a simple idiom, and this is being worked on. But for the moment, preventing vi from crashing is worthwhile. ok jung@ | |||
2016-03-13 | remove an extra space before ^\ help message. | martijn | |
Fixes allignment in viusage By Raf Czlonka | |||
2016-02-11 | Update comment: the #ifdef VDSUSP was removed in r1.22. | Tim van der Molen | |
2016-02-09 | avoid special characters; from michael reed | Jason McIntyre | |
2016-02-03 | Remove needless alias macros for malloc and calloc. No binary change. I | mmcc | |
got this upstreamed a few weeks ago. ok tb (less a few style tweaks), martijn (who suggested style tweaks) | |||
2016-01-30 | /var/tmp is dead, long live /tmp | martijn | |
OK zhuk@ and tb@ | |||
2016-01-30 | replace tail with basename | martijn | |
OK tb@ | |||
2016-01-30 | replace progname variable in gs structure with getprogname | martijn | |
OK zhuk@ and tb@ | |||
2016-01-27 | remove v_estr in favor of warn and warnx | martijn | |
OK schwarze@, zhuk@ fine with me tb@ | |||
2016-01-27 | Replace fprintf+exit with errx. No functional change | martijn | |
OK zhuk@ and schwarze@ fine with me tb@ | |||
2016-01-20 | Remove ARG_CHAR_T, a relic from when the code was written K&R style. | Anthony J. Bentley | |
ok millert@ schwarze@ | |||
2016-01-09 | decls before code; from Martijn van Duren | Theo de Raadt | |
2016-01-06 | Remove mention of message catalog dir. | Todd C. Miller | |
2016-01-06 | We don't use configure so this file is full of lies and we are | Todd C. Miller | |
better off without it. |