tls: code shrink
[oweals/busybox.git] / shell /
2018-04-03 Denys Vlasenkohush: support "f() (cmd)" functions
2018-04-03 Denys Vlasenkohush: fix mishandling of "true | f() { echo QWE; }"
2018-04-03 Denys Vlasenkohush: fix "set -e; false || x=1; echo OK"
2018-04-03 Denys Vlasenkohush: one-word, no-globbing handling of local/export...
2018-04-02 Denys Vlasenkoash: parser: Fix parameter expansion inside inner doubl...
2018-04-02 Denys Vlasenkohush: fix a backslash-removal bug in case
2018-04-02 Denys Vlasenkoash: expand: Fix bugs with words connected to the right...
2018-04-02 Denys Vlasenkoash: redir: Fix typo in noclobber code
2018-04-02 Denys Vlasenkoash: parser: Fix single-quoted patterns in here-documents
2018-04-02 Denys Vlasenkohush: remove stray debugging printout
2018-04-02 Denys Vlasenkoash: parser: Add syntax stack for recursive parsing
2018-04-01 Denys Vlasenkohush: update information comment about heredoc discrepancy
2018-04-01 Denys Vlasenkolibbb: new function bb_die_memory_exhausted
2018-04-01 Denys Vlasenkohush: add a comment where we differ from bash wrt hered...
2018-04-01 Denys Vlasenkoparser: Fix backquote support in here-document EOF...
2018-04-01 Denys Vlasenkoash,hush: handle a few more bkslash-newline cases
2018-03-31 Denys Vlasenkoshells: fix var_LINENO1.tests false positive, add it...
2018-03-31 Denys Vlasenkohush: fix heredoc_bkslash_newline1.tests failure
2018-03-31 Denys Vlasenkoash: use pgetc_eatbnl() in more places
2018-03-31 Martijn Dekkerash: 'nolog' and 'debug' options cause "$-" to wreak...
2018-03-30 Denys Vlasenkohush: fix a signedness bug
2018-03-30 Denys Vlasenkoash,hush: new test dollar_repl_slash_bash2.tests
2018-03-30 Denys Vlasenkoash: fix "char == CTLfoo" comparison signedness bug
2018-03-30 Denys Vlasenkoash: use F_DUPFD_CLOEXEC and O_CLOEXEC
2018-03-28 Denys Vlasenkohush: add a FIXME comment
2018-03-28 Denys Vlasenkoash,hush: fix "saved" redirected fds still visible...
2018-03-06 Denys Vlasenkohush: code shrink
2018-03-02 Denys Vlasenkohush: fix a='a\\'; echo "${a%\\\\}"
2018-03-02 Denys Vlasenkoshell: tweak bkslash_in_varexp.tests, add bkslash_in_va...
2018-03-02 Denys Vlasenkoshell: two new tests, both fail for ash and hush
2018-02-13 Denys Vlasenkohush: simplify process_command_subs()
2018-02-13 Denys Vlasenkoash : fix double-quoted "\z" handling
2018-02-08 Denys Vlasenkohush: probably fixing a bug in last LINENO fix
2018-02-08 Denys Vlasenkohush: LINENO fix
2018-01-30 Denys Vlasenkohush: protect against self-modifying trap code
2018-01-28 Denys Vlasenkoash: make it possible to disable "const global ptr...
2018-01-28 Denys Vlasenkoshell: handle $((NUM++...) like bash does. Closes 10706
2018-01-27 Denys Vlasenkoash: add LINENO support
2018-01-27 Denys Vlasenkohush: add HUSH_BASH_SOURCE_CURDIR config option, to...
2018-01-27 Denys Vlasenkohush: fix dot builtin to not search current directory
2018-01-26 Denys Vlasenkoash: introduce a config option to search current direct...
2018-01-25 Denys Vlasenkoash testsuite: add two hush tests from last commit
2018-01-25 Denys Vlasenkohush: fix two corner cases in ${v/pattern/repl}. Closes...
2018-01-25 Denys Vlasenkohush: fix handling of $_ (so far it's an ordinary varia...
2018-01-24 William Pitcockash: add support for command_not_found_handle hook...
2018-01-19 Denys Vlasenkohush: fix a case where EXIT trap may modify its code...
2018-01-19 Denys Vlasenkohush: fix build if !BASH_LINENO_VAR
2018-01-19 Denys Vlasenkohush: implement $LINENO bashism
2018-01-14 Denys Vlasenkoash: a bit of NOFORK code should only be active if...
2018-01-13 Denys Vlasenkoshell: echo ${?:0} was fixed sometime ago, enable it...
2018-01-13 Denys Vlasenkohush: fix raw ^C handlisg in single-quoted strings
2018-01-12 Denys Vlasenkohush: add command2.tests from ash tests
2018-01-12 Denys Vlasenkohush: tweak command -vV printing code, no logic changes
2018-01-12 Denys Vlasenkohush: implement "command -v -V"
2018-01-11 Denys Vlasenkohush: implement "command" builtin (no options are suppo...
2018-01-11 Denys Vlasenkohush: fix handling of ^C in eval
2018-01-11 Denys Vlasenkohush: fix handling of raw ^C in scripts: "echo ^C"
2018-01-11 Denys Vlasenkohush: remove dead code
2018-01-10 Denys Vlasenkoash: ALWAYS_INLINE grabstackblock()
2018-01-10 Denys Vlasenkoash: make ${v:N:M} more robust for very large M by...
2018-01-09 Denys Vlasenkoash: add comment explaining last change
2018-01-09 Denys Vlasenkoash: fix var_bash5.tests - ${VAR/pattern/repl} construct
2018-01-07 Ingo van Lilash: fail if 'shift' operand is out of range
2017-12-31 Denys Vlasenkorandomconfig fixes
2017-11-03 Denys Vlasenkoash: fix nofork bug where environment is not properly...
2017-11-02 Denys Vlasenkoash: retain envvars with bad names in initial environme...
2017-10-22 Denys Vlasenkohush: fix comment parsing in `cmd`, closes 10421
2017-10-12 Denys Vlasenkowhitespace fixes
2017-10-12 Denys Vlasenkotypo fix
2017-10-12 Denys Vlasenkoash: survive failures in $PS1 expansion. Closes 10371
2017-09-29 Denys Vlasenkouse %m printf specifier where appropriate
2017-09-18 Denys Vlasenkoregularize format of source file headers, no code changes
2017-08-29 Denys Vlasenkohush: fix false positive in unset.tests
2017-08-29 Denys Vlasenkohush: GETOPT_RESET() _after_ getopts too.
2017-08-29 Denys Vlasenkohush: reuse "OPTIND=..." string
2017-08-29 Denys Vlasenkohush: fix "getopts" builtin to not be upset by other...
2017-08-23 Denys Vlasenkoash: more s/error/perror/ for better error reporting
2017-08-23 Johannes Schindelinash: when cd fails, say why
2017-08-23 Johannes Schindelinash: report reason when a script file could not be...
2017-08-17 Denys Vlasenkoash: stage backported LINENO support as a separate...
2017-08-17 Denys Vlasenkohush: trivial code shrink in builtin_getopts
2017-08-15 Denys Vlasenkoash: unset OPTARG if getopts exits 1, support OPTERR...
2017-08-15 Denys Vlasenkoash,hush: comment and debug tweaks, no code changes
2017-08-14 Denys Vlasenkoash: one "current line = 1" might be missing, fix that
2017-08-14 Denys Vlasenkoash: update testsuite (we now error out on ${#=})
2017-08-14 Denys Vlasenkoash: [PARSER] Catch variable length expansions on non...
2017-08-13 Denys Vlasenkoshell: tweak getopts tests, no code changes
2017-08-11 Denys Vlasenkohush: implement "silent" optstrings of ":opts"
2017-08-11 Denys Vlasenkohush: add a test which fails due to uclibc bug in getopt()
2017-08-11 Denys Vlasenkohush: fix redirect code (was using uninitialized variables)
2017-08-11 Denys Vlasenkoshell: add OPTARG poisoning to getopt_optarg.tests
2017-08-11 Denys Vlasenkohush: teach getopts to set/unset OPTARG
2017-08-10 Denys Vlasenkohush: getopts builtin
2017-08-10 Denys Vlasenkoash: fix "unset OPTIND" throwing an error message
2017-08-10 Denys Vlasenkohush: optional times builtin
2017-08-09 Denys Vlasenkoshell: more efficient check for EOL in read
2017-08-09 Denys Vlasenkohush: implement -d DELIM option for 'read'
2017-08-09 Johannes Schindelinash: implement -d DELIM option for read
2017-08-07 Denys Vlasenkonoexec: consolidate code
2017-08-07 Denys Vlasenkonoexec: do GETOPT_RESET() before entering APPLET_main()
next