aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2015-03-12libbb: introduce and use is_prefixed_with()Denys Vlasenko
2014-08-13ash,hush: run reinit_unicode() only if makes senseDenys Vlasenko
2014-08-13hush: make ${#var} unicode-awareDenys Vlasenko
2014-04-15ash,hush: set $HOSTNAME is bash compat. Closes 7028Denys Vlasenko
2014-03-14hush: make "true" built-inDenys Vlasenko
2013-11-28hush: typo fixes in commentsDenys Vlasenko
2013-07-08typo fix in commentDenys Vlasenko
2013-07-05unicode: check $LC_CTYPE too to detect Unicode modeDenys Vlasenko
2013-07-02unicode: check $LC_ALL to detect Unicode mode, not only $LANGDenys Vlasenko
2013-05-12hush: fix build failure if FEATURE_EDITING=y && !HUSH_INTERACTIVEDenys Vlasenko
2013-04-07ash,hush: history builtinFlemming Madsen
2013-04-07hush: fix for "while false && true; do echo BUG; break; done". closes 6170Denys Vlasenko
2013-03-17hush: source builtin should override $N only if it has argsDenys Vlasenko
2013-01-15whitespace fixes. no code changesDenys Vlasenko
2013-01-14whitespace cleanup. no code changesDenys Vlasenko
2012-04-26hush: remove sighandler_t definition hack, platform.h has it tooDenys Vlasenko
2012-04-20fix build breakage found by randconfigDenys Vlasenko
2012-03-27hush: remove unused member struct command::is_stoppedDenys Vlasenko
2011-09-04lineedit: remove SAVE_HISTORY bit, ->hist_file can be used as indicatorDenys Vlasenko
2011-09-04lineedit: add support for history saving on exitDenys Vlasenko
2011-09-04lineedit: fix atomic replace of history file; hush: fix $HISTFILE handlingDenys Vlasenko
2011-08-09randomconfig fixesDenys Vlasenko
2011-08-01hush: fix remaining known two bugs with IFS expansion. Closes 4027.Denys Vlasenko
2011-08-01hush: partially fix wrong expansion on $IFS (bug 4027).Denys Vlasenko
2011-06-01hush: better comment. No code changesDenys Vlasenko
2011-05-31hush: fix a corner case of empty "do \n done" structureDenys Vlasenko
2011-05-14hush: fix misparsing of "... do eval a= ...". Closes 3721Denys Vlasenko
2011-05-13fix "variable 'foo' set but not used" warningsDenys Vlasenko
2011-05-12hush: install signal handlers with filled sigmaskDenys Vlasenko
2011-05-12hush: fixes and small shrink for HUSH_JOB!=yDenys Vlasenko
2011-05-12hush: remove one sigprocmask from exit pathDenys Vlasenko
2011-05-12hush: add forgotten {} in multi-statement if.Denys Vlasenko
2011-05-12hush: fix login shell's signal handling; add -l option so that it's easier to...Denys Vlasenko
2011-05-11hush: replace signal handling machineryDenys Vlasenko
2011-05-11hush: use SA_RESTARTed signal handlers across read.Denys Vlasenko
2011-05-09hush: code shrinkDenys Vlasenko
2011-05-08hush: make read builtin interruptible.Denys Vlasenko
2011-05-08hush: fix incorrect PS2 dispaly and trap handling while reading commandDenys Vlasenko
2011-03-31ash,hush: optional support for $HISTFILESIZE.Denys Vlasenko
2011-03-30hush: remove outdated commentsDenys Vlasenko
2011-03-30hush: fix source1.testsDenys Vlasenko
2011-03-24hush: make parse errors in sourced file non-fatal in interactive scriptDenys Vlasenko
2011-03-24hush: fix a case where return in sourced file has no effectDenys Vlasenko
2011-03-23ash,hush: recheck LANG before every line inputDenys Vlasenko
2011-03-08ash/hush: shrink help textDenys Vlasenko
2011-03-07ash/hush: provide help textDenys Vlasenko
2011-02-14hush: do not print killer signal's name for SIGPIPEDenys Vlasenko
2011-02-08ash: fix TMOUT not restoring tty attributesDenys Vlasenko
2011-02-07echo: do not retry on write errorsDenys Vlasenko
2011-02-02hush: use FEATURE_SH_NOFORK to enable NOFORK trickDenys Vlasenko