summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Expand)Author
2015-11-12Remove xfree()'s prototype. tedu@ removed its definition a few weeksmmcc
2015-11-12grid_put_utf8 is unused, remove it.Nicholas Marriott
2015-11-12Add utf8_padcstr and use it to align columns in list-keys.Nicholas Marriott
2015-11-12tweak previous; ok nicmJason McIntyre
2015-11-12Tidy utf8.c a little: build table on first use, and make utf8_width takeNicholas Marriott
2015-11-12tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client isNicholas Marriott
2015-11-12If we know the terminal outside tmux is not UTF-8, replace UTF-8 inNicholas Marriott
2015-11-12Nuke the utf8 and status-utf8 options and make tmux only a UTF-8Nicholas Marriott
2015-11-12Remove the mouse_utf8_flag format as well.Nicholas Marriott
2015-11-12Support UTF-8 key bindings by expanding the key type from int toNicholas Marriott
2015-11-12Update the dired mode comments.Mark Lumsden
2015-11-12Default history-file should be "" not NULL, from Greg Onufe.Nicholas Marriott
2015-11-12Cast three ctype functions' arguments to unsigned char and simplify ammcc
2015-11-12Remove chardef[] and just use isprint/iscntrl directly, ok teduNicholas Marriott
2015-11-11Drop mouse-utf8 option and always turn on UTF-8 mouse if the client saysNicholas Marriott
2015-11-11at already uses O_EXCL when creating files so there's no need toTodd C. Miller
2015-11-11Switch back to C versions of true/false. I do not accept any of theTheo de Raadt
2015-11-11Use warn/warnx here too.Todd C. Miller
2015-11-11Remove bogus DST code. mktime() handles DST automatically whenTodd C. Miller
2015-11-11Use warn/warnx where sensible and add fatal/fatalx wrappers forTodd C. Miller
2015-11-11needs pledge "getpw" alsoTheo de Raadt
2015-11-11Use fstatat(), openat() and unlinkat() when operating on files inTodd C. Miller
2015-11-11pledge "stdio rpath wpath cpath fattr proc exec tty" seems to work.Theo de Raadt
2015-11-11Clear the mini buffer once a question has been displayed. ok jasper@Mark Lumsden
2015-11-11improve PEEK/POKE macros: better casts, don't multiply evaluateDamien Miller
2015-11-11exit if pledge failsTheo de Raadt
2015-11-11exit() after perror() for pledge failure. Perhaps this got introducedTheo de Raadt
2015-11-11remove prototypes for long-gone s/key support; ok dtucker@Damien Miller
2015-11-11creat() -> open equiv; from Frederic NowakTheo de Raadt
2015-11-10If realpath() fails just try the original path.Nicholas Marriott
2015-11-10Handle absolute paths properly, and don't use resolved path inNicholas Marriott
2015-11-10With -H, do not overrun your static buffer on files longer than 4 kB.Ingo Schwarze
2015-11-10Split the intra-thread functionality from kill(2) into its own syscallPhilip Guenther
2015-11-09add missing NAME entries; ok schwarzeJason McIntyre
2015-11-09use perror() instead, as in lesskeyTheo de Raadt
2015-11-09stop acting like "more" if progname is "page"; ok millertTheo de Raadt
2015-11-09fsync() on a tty is meaningless; ok deraadt@Todd C. Miller
2015-11-09pledge "stdio rpath wpath cpath exec" early, then after openingTheo de Raadt
2015-11-09NULL_IFILE has no weird use patterns. NULL is sufficient.Theo de Raadt
2015-11-09define of SPACES_IN_FILENAMES is never usedTheo de Raadt
2015-11-09use (off_t)-1 rather than a BAD_LSEEK wrapperTheo de Raadt
2015-11-09error() is not a stdarg function, so there is no reason for NULL_PARGTheo de Raadt
2015-11-093 pledge calls; 2 are for secure mode and will help track down if thisTheo de Raadt
2015-11-09do not save history in secure modeTheo de Raadt
2015-11-09Rename AT_DIR -> AT_SPOOL and SPOOL_DIR -> CRON_SPOOL to improveTodd C. Miller
2015-11-09use open() with flags instead of creat()Theo de Raadt
2015-11-09Remove xfree(). From Michael W. Bombardieri.mmcc
2015-11-09Remove NULL-checks before free(), a needless comment, and a needlessmmcc
2015-11-09use strncasecmp()Jasper Lievisse Adriaanse
2015-11-09no need to initialize variables that are being initialized a few lines belowJasper Lievisse Adriaanse