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