aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* hush: code shrinkDenys Vlasenko2015-10-111-4/+1
* remove global "jmp_buf die_jmp" from !FEATURE_PREFER_APPLETS buildsDenys Vlasenko2015-10-091-11/+14
* build system: -fno-builtin-printfDenys Vlasenko2015-10-071-1/+1
* libbb: more compact API for bb_parse_mode()Denys Vlasenko2015-10-071-3/+4
* hush: fix umask: umask(022) was setting umask(755)Denys Vlasenko2015-10-071-3/+7
* hush: fix a nommu bug where a part of function body is lost if run in a pipeDenys Vlasenko2015-09-041-10/+25
* Removes stray empty line from codeManinder Singh2015-07-131-1/+0
* typo fixesManinder Singh2015-05-251-1/+1
* libbb: introduce and use is_prefixed_with()Denys Vlasenko2015-03-121-1/+1
* ash,hush: run reinit_unicode() only if makes senseDenys Vlasenko2014-08-131-4/+8
* hush: make ${#var} unicode-awareDenys Vlasenko2014-08-131-10/+19
* ash,hush: set $HOSTNAME is bash compat. Closes 7028Denys Vlasenko2014-04-151-1/+10
* hush: make "true" built-inDenys Vlasenko2014-03-141-0/+1
* hush: typo fixes in commentsDenys Vlasenko2013-11-281-2/+2
* typo fix in commentDenys Vlasenko2013-07-081-1/+1
* unicode: check $LC_CTYPE too to detect Unicode modeDenys Vlasenko2013-07-051-0/+1
* unicode: check $LC_ALL to detect Unicode mode, not only $LANGDenys Vlasenko2013-07-021-1/+3
* hush: fix build failure if FEATURE_EDITING=y && !HUSH_INTERACTIVEDenys Vlasenko2013-05-121-3/+3
* ash,hush: history builtinFlemming Madsen2013-04-071-0/+14
* hush: fix for "while false && true; do echo BUG; break; done". closes 6170Denys Vlasenko2013-04-071-10/+9
* hush: source builtin should override $N only if it has argsDenys Vlasenko2013-03-171-2/+7
* whitespace fixes. no code changesDenys Vlasenko2013-01-151-1/+1
* whitespace cleanup. no code changesDenys Vlasenko2013-01-141-2/+2
* hush: remove sighandler_t definition hack, platform.h has it tooDenys Vlasenko2012-04-261-4/+0
* fix build breakage found by randconfigDenys Vlasenko2012-04-201-0/+2
* hush: remove unused member struct command::is_stoppedDenys Vlasenko2012-03-271-4/+0
* lineedit: remove SAVE_HISTORY bit, ->hist_file can be used as indicatorDenys Vlasenko2011-09-041-2/+1
* lineedit: add support for history saving on exitDenys Vlasenko2011-09-041-0/+4
* lineedit: fix atomic replace of history file; hush: fix $HISTFILE handlingDenys Vlasenko2011-09-041-17/+23
* randomconfig fixesDenys Vlasenko2011-08-091-6/+6
* hush: fix remaining known two bugs with IFS expansion. Closes 4027.Denys Vlasenko2011-08-011-27/+55
* hush: partially fix wrong expansion on $IFS (bug 4027).Denys Vlasenko2011-08-011-9/+30
* hush: better comment. No code changesDenys Vlasenko2011-06-011-1/+1
* hush: fix a corner case of empty "do \n done" structureDenys Vlasenko2011-05-311-1/+4
* hush: fix misparsing of "... do eval a= ...". Closes 3721Denys Vlasenko2011-05-141-28/+49
* fix "variable 'foo' set but not used" warningsDenys Vlasenko2011-05-131-2/+2
* hush: install signal handlers with filled sigmaskDenys Vlasenko2011-05-121-9/+28
* hush: fixes and small shrink for HUSH_JOB!=yDenys Vlasenko2011-05-121-10/+17
* hush: remove one sigprocmask from exit pathDenys Vlasenko2011-05-121-4/+6
* hush: add forgotten {} in multi-statement if.Denys Vlasenko2011-05-121-2/+3
* hush: fix login shell's signal handling; add -l option so that it's easier to...Denys Vlasenko2011-05-121-32/+35
* hush: replace signal handling machineryDenys Vlasenko2011-05-111-232/+278
* hush: use SA_RESTARTed signal handlers across read.Denys Vlasenko2011-05-111-16/+21
* hush: code shrinkDenys Vlasenko2011-05-091-59/+66
* hush: make read builtin interruptible.Denys Vlasenko2011-05-081-2/+96
* hush: fix incorrect PS2 dispaly and trap handling while reading commandDenys Vlasenko2011-05-081-5/+22
* ash,hush: optional support for $HISTFILESIZE.Denys Vlasenko2011-03-311-0/+4
* hush: remove outdated commentsDenys Vlasenko2011-03-301-5/+1
* hush: fix source1.testsDenys Vlasenko2011-03-301-27/+37
* hush: make parse errors in sourced file non-fatal in interactive scriptDenys Vlasenko2011-03-241-45/+52