Age | Commit message (Expand) | Author |
2016-03-04 | don't parse (...|...) patterns in variable substitution inside double quotes | Dmitrij Czarkoff |
2015-12-30 | rename global "e" to genv to avoid accidental shadowing and aliasing. | Ted Unangst |
2015-12-14 | Move system headers from sh.h to those files that actually need them. | tb |
2015-12-14 | Remove a superfluous macro. No binary change. ok tb@ | mmcc |
2015-11-18 | Only unget match[] if it has been used, ok sthen | Nicholas Marriott |
2015-11-12 | Use isdigit() instead of ksh's homebrewed alternative. | mmcc |
2015-11-01 | Add uses of areallocarray(). mksh and Bitrig ksh already have similar | mmcc |
2015-10-19 | Move string.h include from sh.h to the files that use it. | mmcc |
2015-10-19 | Apply style(9) to header includes. | mmcc |
2015-10-10 | Add a define for the invalid state, from mksh via Michael McConville. | Nicholas Marriott |
2015-10-09 | Lexer states are not needed outside of lex.c. | Todd C. Miller |
2015-10-05 | Remove EXTERN from lex.h and put the definitions in lex.c, from Michael | Nicholas Marriott |
2015-09-30 | fix error message for csh-history. the lexer needs to back up more. | Ted Unangst |
2015-09-22 | Make errorf() and bi_errorf() handle a NULL argument. | Todd C. Miller |
2015-09-18 | Last of the (thing *)0 -> NULL, from Michael McConville. No binary | Nicholas Marriott |
2015-09-17 | Remove unnecessary casts, from Michael McConville. No binary change. | Nicholas Marriott |
2015-09-15 | correct spelling of NULL from (char *)0. from Michael McConville. | Ted Unangst |
2015-09-10 | Replace newline and space defines by "\n" and " " directly, from Michael | Nicholas Marriott |
2015-07-30 | Fix the baskslash-escaped codes ('\nnn') usage in PS1. | Vadim Zhukov |
2013-12-17 | ctype cleanups. Repeated re-audits of this sensitive area by okan and | Theo de Raadt |
2013-11-12 | add a variety of missing prototypes | Theo de Raadt |
2013-03-03 | Fix quoting in word part of ${var+word} (and similar) when entire thing | Philip Guenther |
2013-01-20 | Fix backslash escaping during filename tab-completion in ksh. | Stefan Sperling |
2011-03-09 | substitute '~' for $HOME in the \W prompt case; matches bash's behavior. | Okan Demirmen |
2008-07-03 | fix inifinite loop with set -o csh-history and !<space> as input. | Otto Moerbeek |
2007-06-02 | s/FALLTROUGH/FALLTHROUGH/ | Moritz Jodeit |
2006-07-10 | fix ksh prompt wrapping, from Marcus Glocker <marcus@nazgul.ch>. | Bob Beck |
2006-06-16 | Work around a problem with \$ expansion where \$\$ turned into pid ($$) | Dale Rahn |
2006-05-29 | Implement \$ and \# expansion for PS1. Whoever thought it a clever | Otto Moerbeek |
2006-04-10 | fix lint comments, no functional changes; ok ray | Jared Yanovich |
2005-12-11 | fix a few name clashes with libc; found by lint. ok deraadt@ | Otto Moerbeek |
2005-09-11 | Fix " handling in here documents. POSIX says they are not special, so | Otto Moerbeek |
2005-03-30 | lots of indentation cleanup, now ksh is readable like our other code. | Theo de Raadt |
2005-02-21 | Set \u in prompt expansion to the right value, while avoiding getpw* calls, | Otto Moerbeek |
2005-01-10 | In csh-style history expansion, initialize s->u.freeme to NULL so we | Todd C. Miller |
2004-12-30 | Remove -Wno-unused form CFLAGS and kill some unused vars found as a result of | Otto Moerbeek |
2004-12-30 | Simplify local copying of PS1 environment variable. Since we no | Todd C. Miller |
2004-12-29 | in prompt variable parsing, if either \n or \r (the two character | Theo de Raadt |
2004-12-22 | Fix a use-after-free, that causs core dumps if a shell is killed | Otto Moerbeek |
2004-12-22 | Use stdbool.h instead of rolling our own bools. | Todd C. Miller |
2004-12-20 | Ansification plus some minor knf. No binary change on i386 and | Otto Moerbeek |
2004-12-19 | spacing | Theo de Raadt |
2004-12-18 | deregister | Todd C. Miller |
2004-12-18 | Get rid of #ifdef KSH since we don't care about building a V7 style sh and | Todd C. Miller |
2004-12-18 | Remove unused OS dependent #ifdef blocks, #defines and macro abstraction. | Todd C. Miller |
2004-12-12 | csh-style ! history completion, which can be activated by using | Theo de Raadt |
2004-11-10 | defer ! and !! handling till prompt printing, like real ksh, and this now | Theo de Raadt |
2004-11-06 | \[ and \] delimit blocks of characters which are processed just like | Theo de Raadt |
2004-11-06 | change \w to output ~/subpath type things, except for root of course | Theo de Raadt |
2004-11-04 | do the variety-pack of bash-style \letter expansions on prompt variables. | Theo de Raadt |