aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2008-12-30libbb: add bb_unsetenv (taken from hush).Denis Vlasenko
2008-11-25ash,hush: add TODO for rare build failureDenis Vlasenko
2008-10-29whitespace fixes, no code changesDenis Vlasenko
2008-10-14hush: add TODODenis Vlasenko
2008-10-14hush: next small step towards functionsDenis Vlasenko
2008-10-13hush: fix NOMMU bug (analogous to preceding commit for MMU)Denis Vlasenko
2008-10-13hush: fix trashing of environment by local env vars:Denis Vlasenko
2008-10-09hush: fix environment and memory leaks, add tests for themDenis Vlasenko
2008-10-09hush: preparatory work for implementing functionsDenis Vlasenko
2008-10-09hush: massive renaming of ill-named structures and fieldsDenis Vlasenko
2008-09-25- fix compilation on OSF/1Bernhard Reutner-Fischer
2008-08-04hush: fix mishandling of a'b'c=fff as assignments. They are not.Denis Vlasenko
2008-08-03hush: remove a comment about already fixed bugDenis Vlasenko
2008-07-31hush: support $_NUMBERS variable namesDenis Vlasenko
2008-07-31hush: fix "case ... in <newline> word)..."Denis Vlasenko
2008-07-31hush: support "pattern1|pattern2...)" in case statementsDenis Vlasenko
2008-07-29hush: trivial code shrinkDenis Vlasenko
2008-07-29hush: use G.xxx instead of #define xxx G.xxx. We have too many globalsDenis Vlasenko
2008-07-29randomconfig fixDenis Vlasenko
2008-07-29hush: small fix for repeated continue and fix for wrong loop depth countDenis Vlasenko
2008-07-29hush: fix inverted check (was making all break's to act as "break 99999")Denis Vlasenko
2008-07-29hush: fix break'ing out of {} and () groups; with testcaseDenis Vlasenko
2008-07-29randomconfig fixesDenis Vlasenko
2008-07-29hush: add #defines to switch off break/continue if loops are not supportedDenis Vlasenko
2008-07-28hush: fix "while false; ..." exitcode; add testsuitesDenis Vlasenko
2008-07-28hush: support "break N" and "continue N"Denis Vlasenko
2008-07-28hush: implement break and continueDenis Vlasenko
2008-07-28hush: in run_list(), some loop_top ops seems to be superfluous.Denis Vlasenko
2008-07-28hush: in run_list(), last_cond_code seems to be superfluous. comment it outDenis Vlasenko
2008-07-28hush: explain run_list() in detail; small optimizationsDenis Vlasenko
2008-07-28hush: finish and enable optional case...esac support. Code size cost:Denis Vlasenko
2008-07-21libbb: [x]fopen_for_{read,write} introduced and used.Denis Vlasenko
2008-07-21- fix spellingBernhard Reutner-Fischer
2008-07-14hush: fix "... pattern) cmd;; esac" caseDenis Vlasenko
2008-07-14hush: delete unused field in struct child.Denis Vlasenko
2008-07-14hush: add case statement support. It is incomplete and disabled for now.Denis Vlasenko
2008-07-09hush: compile fixes for !LOOPS caseDenis Vlasenko
2008-07-06hush: support "for if in do done then; do echo $if; done" caseDenis Vlasenko
2008-07-05hush: support "for v; do ... done" syntax (implied 'in "$@"')Denis Vlasenko
2008-07-05hush: fix a case where "$@" must expand to no word at allDenis Vlasenko
2008-07-05*: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko
2008-07-01revert last two commits. vfork cannot be used in subroutine,Denis Vlasenko
2008-07-01*: introduce and use xfork()Denis Vlasenko
2008-07-01*: introduce and use xvfork()Denis Vlasenko
2008-06-27*: introduce and use FAST_FUNC: regparm on i386, otherwise no-onDenis Vlasenko
2008-06-25whitespace fixes. no code changesDenis Vlasenko
2008-06-24hush: ifdef out parts which are not neededDenis Vlasenko
2008-06-24hush: kill some old unused fields; small code shrinkDenis Vlasenko
2008-06-23fix breakage found by randomconfigDenis Vlasenko
2008-06-23hush: trivial fix in debug codeDenis Vlasenko