aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
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
2008-06-18fix globbing in unquoted $* and $@Denis Vlasenko
2008-06-18hush: fix a bug with backslashes improperly handled in unquoted variables.Denis Vlasenko
2008-06-18hush: add testsuite for "no globbing in redirection" rule.Denis Vlasenko
2008-06-18hush: fix last hush-bugs testcase (disappearing "", $empty"" etc)Denis Vlasenko
2008-06-17hush: fix $$ handlingDenis Vlasenko
2008-06-17hush: fix "for a in; do echo 'I should never run'; done" bugDenis Vlasenko
2008-06-17hush: continue fixing quoting and subst: fix glob_and_assign.tests.Denis Vlasenko
2008-06-17hush: cleanup pass, the biggest is - moved builtins to the end of the file,Denis Vlasenko
2008-06-17hush: fix memory leak. it was actually rather invloved problem.Denis Vlasenko
2008-06-16hush: fixing fallout from last big glob fix:Denis Vlasenko
2008-06-16hush: fix hush-bugs/glob_and_vars.tests testcase:Denis Vlasenko
2008-06-15hush: eliminate PARSEFLAG_SEMICOLON and ctx->parse_type field.Denis Vlasenko
2008-06-14hush: fix a bug where we were requiring semicolon here: (cmd;)Denis Vlasenko
2008-06-14hush: add support for ':'; create testsuite entriesDenis Vlasenko
2008-06-14hush: support "! cmd | cmd" negationDenis Vlasenko
2008-06-12hush: speed up o_addX{chr,str}Denis Vlasenko
2008-06-12hush: fix for nested $()s with escapes + testsuiteDenis Vlasenko
2008-06-10hush: more backtick and quoting fixes...Denis Vlasenko
2008-06-10hush: fix escaping of \[*?; add testsuites for these and for globbingDenis Vlasenko
2008-06-10hush: fix yet another falloutDenis Vlasenko
2008-06-10hush: fix some fallout from prev commits, add testsuiteDenis Vlasenko
2008-06-10hush: search/and/replace style cleanups, no code changesDenis Vlasenko
2008-06-10hush: fix two nasty bugs:Denis Vlasenko
2008-06-10hush: fix a memory leak in NOMMU caseDenis Vlasenko
2008-06-09less: fix a case when regexp matches ""Denis Vlasenko
2008-05-25hush: make it ignore SIGINT etc in a config wich has no job controlDenis Vlasenko
2008-05-19- use EXIT_{SUCCESS,FAILURE}. No object-code changesBernhard Reutner-Fischer
2008-04-13ash: speed up NOFORK code in ash by eliminating second find_applet().Denis Vlasenko
2008-03-24lpd: fix OOM vulnerability (was eating arbitrarily large commands)Denis Vlasenko
2008-03-23patch: shrink by Pascal Bellard <pascal.bellard AT ads-lu.com> (-80 bytes)Denis Vlasenko
2008-03-20*: use fopen_or_warn in few more placesDenis Vlasenko
2008-03-17*: add -Wunused-parameter; fix resulting breakageDenis Vlasenko
2008-03-17libbb: introduce and use sigprocmask_allsigs and sigaction_set.Denis Vlasenko
2008-03-12libbb: introduse and use signal_[no_]SA_RESTART_empty_mask and sigaction_setDenis Vlasenko
2008-02-27*: add optimization barrier to all "G trick" locationsDenis Vlasenko
2008-02-24less,klogd,syslogd,nc,tcpudp: exit on signal by killing itself, not exit(1)Denis Vlasenko
2008-02-20libbb: introduce and use nonblock_safe_read(). Yay!Denis Vlasenko
2008-02-16libbb: introduce bb_signals and bb_signals_recursive,Denis Vlasenko
2008-02-16random s/short/int/Denis Vlasenko
2008-02-11hush: die_sllep needs restoring only if job control is onDenis Vlasenko
2008-02-11hush: close-on-exec interactive_fdDenis Vlasenko
2008-02-11hush: set CLOEXEC on script file being executedDenis Vlasenko
2008-02-11hush: fix the commentDenis Vlasenko
2008-02-11hush: reset die_sleep to 0 in child after forkDenis Vlasenko