Age | Commit message (Expand) | Author |
2018-04-01 | hush: add a comment where we differ from bash wrt heredoc EOF mark handling | Denys Vlasenko |
2018-04-01 | parser: Fix backquote support in here-document EOF mark | Denys Vlasenko |
2018-04-01 | ash,hush: handle a few more bkslash-newline cases | Denys Vlasenko |
2018-03-31 | shells: fix var_LINENO1.tests false positive, add it to ash tests too | Denys Vlasenko |
2018-03-31 | hush: fix heredoc_bkslash_newline1.tests failure | Denys Vlasenko |
2018-03-31 | ash: use pgetc_eatbnl() in more places | Denys Vlasenko |
2018-03-31 | ash: 'nolog' and 'debug' options cause "$-" to wreak havoc | Martijn Dekker |
2018-03-31 | hush: fix a signedness bug | Denys Vlasenko |
2018-03-30 | ash,hush: new test dollar_repl_slash_bash2.tests | Denys Vlasenko |
2018-03-30 | ash: fix "char == CTLfoo" comparison signedness bug | Denys Vlasenko |
2018-03-30 | ash: use F_DUPFD_CLOEXEC and O_CLOEXEC | Denys Vlasenko |
2018-03-28 | hush: add a FIXME comment | Denys Vlasenko |
2018-03-28 | ash,hush: fix "saved" redirected fds still visible in children | Denys Vlasenko |
2018-03-06 | hush: code shrink | Denys Vlasenko |
2018-03-02 | hush: fix a='a\\'; echo "${a%\\\\}" | Denys Vlasenko |
2018-03-02 | shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests | Denys Vlasenko |
2018-03-02 | shell: two new tests, both fail for ash and hush | Denys Vlasenko |
2018-02-13 | hush: simplify process_command_subs() | Denys Vlasenko |
2018-02-13 | ash : fix double-quoted "\z" handling | Denys Vlasenko |
2018-02-08 | hush: probably fixing a bug in last LINENO fix | Denys Vlasenko |
2018-02-08 | hush: LINENO fix | Denys Vlasenko |
2018-01-30 | hush: protect against self-modifying trap code | Denys Vlasenko |
2018-01-28 | ash: make it possible to disable "const global ptr" optimization | Denys Vlasenko |
2018-01-28 | shell: handle $((NUM++...) like bash does. Closes 10706 | Denys Vlasenko |
2018-01-27 | ash: add LINENO support | Denys Vlasenko |
2018-01-27 | hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ash | Denys Vlasenko |
2018-01-27 | hush: fix dot builtin to not search current directory | Denys Vlasenko |
2018-01-26 | ash: introduce a config option to search current directory for sourced files | Denys Vlasenko |
2018-01-25 | ash testsuite: add two hush tests from last commit | Denys Vlasenko |
2018-01-25 | hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 | Denys Vlasenko |
2018-01-25 | hush: fix handling of $_ (so far it's an ordinary variable, no special meaning) | Denys Vlasenko |
2018-01-24 | ash: add support for command_not_found_handle hook function (bashism) | William Pitcock |
2018-01-19 | hush: fix a case where EXIT trap may modify its code mid-flight | Denys Vlasenko |
2018-01-19 | hush: fix build if !BASH_LINENO_VAR | Denys Vlasenko |
2018-01-19 | hush: implement $LINENO bashism | Denys Vlasenko |
2018-01-15 | ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=y | Denys Vlasenko |
2018-01-13 | shell: echo ${?:0} was fixed sometime ago, enable it in tests | Denys Vlasenko |
2018-01-13 | hush: fix raw ^C handlisg in single-quoted strings | Denys Vlasenko |
2018-01-12 | hush: add command2.tests from ash tests | Denys Vlasenko |
2018-01-12 | hush: tweak command -vV printing code, no logic changes | Denys Vlasenko |
2018-01-12 | hush: implement "command -v -V" | Denys Vlasenko |
2018-01-11 | hush: implement "command" builtin (no options are supported yet) | Denys Vlasenko |
2018-01-11 | hush: fix handling of ^C in eval | Denys Vlasenko |
2018-01-11 | hush: fix handling of raw ^C in scripts: "echo ^C" | Denys Vlasenko |
2018-01-11 | hush: remove dead code | Denys Vlasenko |
2018-01-10 | ash: ALWAYS_INLINE grabstackblock() | Denys Vlasenko |
2018-01-10 | ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INT | Denys Vlasenko |
2018-01-09 | ash: add comment explaining last change | Denys Vlasenko |
2018-01-09 | ash: fix var_bash5.tests - ${VAR/pattern/repl} construct | Denys Vlasenko |
2018-01-07 | ash: fail if 'shift' operand is out of range | Ingo van Lil |