aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2018-04-07hush: fix prompt in multi-line $(())Denys Vlasenko
2018-04-06hush: fix "unset PS1/PS2", and put them into initial variable setDenys Vlasenko
2018-04-06hush: if we did match "LINENO" or "OPTIND", stop further comparisonsDenys Vlasenko
2018-04-06hush: consolidate handling of setting/unsetting of PSn, LINENO, OPTINDDenys Vlasenko
2018-04-05hush: update to correctly handle changed var_bash[346].testsDenys Vlasenko
2018-04-05hush: implement "hush -s"Denys Vlasenko
2018-04-05hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko
2018-04-05hush: fix corner cases with exec in empty expansionsDenys Vlasenko
2018-04-05hush: less mind-bending set_vars_and_save_old()Denys Vlasenko
2018-04-05hush: "no logic changes" in last commit was not true, fix it upDenys Vlasenko
2018-04-05hush: make run_pipe code simpler to understand, no logic changesDenys Vlasenko
2018-04-05hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko
2018-04-04hush: make var nesting code independent of "local" supportDenys Vlasenko
2018-04-04hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko
2018-04-03hush: support "f() (cmd)" functionsDenys Vlasenko
2018-04-03hush: fix mishandling of "true | f() { echo QWE; }"Denys Vlasenko
2018-04-03hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko
2018-04-03hush: one-word, no-globbing handling of local/export/readonly argsDenys Vlasenko
2018-04-02hush: fix a backslash-removal bug in caseDenys Vlasenko
2018-04-02hush: remove stray debugging printoutDenys Vlasenko
2018-04-01hush: update information comment about heredoc discrepancyDenys Vlasenko
2018-04-01libbb: new function bb_die_memory_exhaustedDenys Vlasenko
2018-04-01hush: add a comment where we differ from bash wrt heredoc EOF mark handlingDenys Vlasenko
2018-04-01ash,hush: handle a few more bkslash-newline casesDenys Vlasenko
2018-03-31hush: fix heredoc_bkslash_newline1.tests failureDenys Vlasenko
2018-03-31hush: fix a signedness bugDenys Vlasenko
2018-03-28hush: add a FIXME commentDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-03-06hush: code shrinkDenys Vlasenko
2018-03-02hush: fix a='a\\'; echo "${a%\\\\}"Denys Vlasenko
2018-03-02shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.testsDenys Vlasenko
2018-02-13hush: simplify process_command_subs()Denys Vlasenko
2018-02-08hush: probably fixing a bug in last LINENO fixDenys Vlasenko
2018-02-08hush: LINENO fixDenys Vlasenko
2018-01-30hush: protect against self-modifying trap codeDenys Vlasenko
2018-01-27hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ashDenys Vlasenko
2018-01-27hush: fix dot builtin to not search current directoryDenys Vlasenko
2018-01-25hush: fix two corner cases in ${v/pattern/repl}. Closes 10686Denys Vlasenko
2018-01-25hush: fix handling of $_ (so far it's an ordinary variable, no special meaning)Denys Vlasenko
2018-01-19hush: fix a case where EXIT trap may modify its code mid-flightDenys Vlasenko
2018-01-19hush: fix build if !BASH_LINENO_VARDenys Vlasenko
2018-01-19hush: implement $LINENO bashismDenys Vlasenko
2018-01-13hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko
2018-01-12hush: tweak command -vV printing code, no logic changesDenys Vlasenko
2018-01-12hush: implement "command -v -V"Denys Vlasenko
2018-01-11hush: implement "command" builtin (no options are supported yet)Denys Vlasenko
2018-01-11hush: fix handling of ^C in evalDenys Vlasenko
2018-01-11hush: fix handling of raw ^C in scripts: "echo ^C"Denys Vlasenko
2018-01-11hush: remove dead codeDenys Vlasenko
2017-12-31randomconfig fixesDenys Vlasenko