summaryrefslogtreecommitdiff
path: root/usr.bin/vi/ex
AgeCommit message (Expand)Author
2018-07-13Remove cscope leftover and a stray comma.Anthony J. Bentley
2018-07-13Unused variable.Kenneth R Westerback
2018-02-12Simplify documentation of split-screen mode, avoiding abuse of []Ingo Schwarze
2017-12-14Enable the awk scripts to generate ex_def.h and options_def.h.Martijn van Duren
2017-04-18free(NULL) is ok so use it; from Michael W. BombardieriTheo de Raadt
2016-09-02Fix the begin of word issue in vi(1).Martijn van Duren
2016-08-01Remove vi's "directory" option and TMPDIR support.Anthony J. Bentley
2016-05-27Revert CHAR_T removal. Some signedness flaws were introduced.Martijn van Duren
2016-05-02Remove pointless comment. getcwd(3) is safe.Martijn van Duren
2016-05-02Remove CHAR_T in favor of native types.Martijn van Duren
2016-04-19Remove not implemented decliration of sscr_pty.Martijn van Duren
2016-03-19By issuing :e +something in vi(1) this uncovers a backwards memcpy with themestre
2016-01-20Remove ARG_CHAR_T, a relic from when the code was written K&R style.Anthony J. Bentley
2016-01-06Remove the msg_cat() function and adjust its former callers.Todd C. Miller
2016-01-06Remove the numeric identifiers at the beginning of the messagesTodd C. Miller
2015-12-07Remove needless type casts and corresponding type parameters frommmcc
2015-11-19Remove cscope support in vi.Anthony J. Bentley
2015-04-24struct timespec/clock_gettime(3) conversion for vi(1).Bryan Steele
2015-04-21init both fds passed to pipe as -1 instead of initing one twiceJonathan Gray
2015-03-29Remove SA_INTERRUPT, HISTORIC_PRACTICE, and HISTORICAL_PRACTICE usingBrian Callahan
2015-03-28vi was using two separate isblank functions: one defined in <ctype.h> andBrian Callahan
2015-01-16Replace <sys/param.h> with <limits.h> and other less dirty headers whereTheo de Raadt
2014-11-20Remove the vi perl api.Anthony J. Bentley
2014-11-14from natano:Ted Unangst
2014-11-14from natano:Ted Unangst
2014-11-12Remove more portability bits for older systems; from Martin NatanoTodd C. Miller
2014-11-12Ansify vi.Anthony J. Bentley
2014-11-10remove various bits of autoconf cruft. from Martin NatanoTed Unangst
2014-11-10remove old, unnecessary compat code. from Martin NatanoTed Unangst
2014-10-14create a REALLOCARRAY macro, and use it where it gives us overflowTheo de Raadt
2014-09-09We no longer need to convert "\<" and "\>" to "[[:<:]]" and "[[:>:]]"Todd C. Miller
2014-07-10add missing include file to bring in protosTheo de Raadt
2013-12-01Change the tags queue from CIRCLEQ to TAILQ.Kenneth R Westerback
2013-12-01Change the tag queue from CIRCLEQ to TAILQ.Kenneth R Westerback
2013-12-01Convert the ranges CIRCLEQ to TAILQ.Kenneth R Westerback
2013-11-28Convert the display screens and hidden screens CIRCLEQ's to TAILQ's.Kenneth R Westerback
2013-11-25Replace _texth CIRCLEQ with TAILQ. One down, five to go.Kenneth R Westerback
2013-08-22Correct format string mismatches turned up by -Wformat=2Philip Guenther
2013-05-03Use open(2) / fstat(2) instead of stat(2) / open(2) for checkingMatthias Kilian
2012-12-20use openpty() rather than hand-rolled pty opening code; ok millert@Christian Weisgerber
2012-12-03Fix hang when exiting shell in script mode. OK naddy@Todd C. Miller
2011-07-10Rename O_DIRECTORY to O_TMP_DIRECTORY to avoid a namespace collisionTodd C. Miller
2010-05-29subsitution -> substitution;Jason McIntyre
2009-11-15do not leak a lot of memory if a small memory allocation fails, found byTheo de Raadt
2009-11-14fix leaks in error paths found by parfaitJonathan Gray
2009-10-28rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andTheo de Raadt
2009-06-10Use poll() instead of select(). The sscr_check_input() bit isTodd C. Miller
2008-08-29Fix nvi's cscope support in the case that someone provided a filenameOwain Ainsworth
2007-09-11use strcspn to properly overwrite '\n' in fgets returned bufferGilles Chehade
2007-09-02use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgTheo de Raadt