aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko
2016-10-26ash: [PARSER] Fix parsing of ${##1}Denys Vlasenko
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko
2016-10-26ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko
2016-10-26ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko
2016-10-25ash: [REDIR] Move null redirect checks into callerDenys Vlasenko
2016-10-25ash: [PARSER] Do not show prompts in expandstrDenys Vlasenko
2016-10-25ash: [EXPAND] Removed herefd hackDenys Vlasenko
2016-10-25ash: [SHELL] Move flushall to the point just before _exitDenys Vlasenko
2016-10-25ash: [EVAL] Let funcnode refer to a function definition, not its first commandDenys Vlasenko
2016-10-25ash: [REDIR] Remove EMFILE special caseDenys Vlasenko
2016-10-25ash: [EVAL] Check exit for eval NSUBSHELLDenys Vlasenko
2016-10-25ash: add comment explaining "set -e; $(cmd)" discrepancyDenys Vlasenko
2016-10-25ash: reduce code differences from upstreamDenys Vlasenko
2016-10-25ash: remove unused EXSHELLPROCDenys Vlasenko
2016-10-25ash: [BUILTIN] Use EXEXIT in place of EXEXECDenys Vlasenko
2016-10-25ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko
2016-10-24ash: explain EXP_REDIR and why we (dont) glob redir filenamesDenys Vlasenko
2016-10-24ash: return exit status of nofork appletsRon Yorston
2016-10-07ash: all blocks in function node copying must be SHELL_ALIGNedDenys Vlasenko
2016-10-07ash: get rid of two global data variablesDenys Vlasenko
2016-10-07ash: comment out free(p) just before _exit, tweak some outdated commentsDenys Vlasenko
2016-10-02ash: [PARSER] Add nlprompt/nlnoprompt helpersDenys Vlasenko
2016-10-02whitespace fixesDenys Vlasenko
2016-10-02sh: do not print empty line at the end of "help" outputDenys Vlasenko
2016-10-02ash: undo "tokname hack"Denys Vlasenko
2016-10-02ash: placate gcc: "warning: ! is only applied to the left hand side of =="Denys Vlasenko
2016-10-02ash: fix globbing bugs when using glibc glob()Denys Vlasenko
2016-10-02ash: style fixesDenys Vlasenko
2016-10-02ash: support "--" in "source" builtinDenys Vlasenko
2016-10-02ash: expand: Fixed "$@" expansion when EXP_FULL is falseDenys Vlasenko
2016-10-02test: memory leak: free group id listDenys Vlasenko
2016-10-01ash: fix return_in_trap1.tests failureDenys Vlasenko
2016-10-01ash: [EXPAND] Optimise nulonly away and just use quoted as beforeDenys Vlasenko
2016-10-01ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIMDenys Vlasenko
2016-10-01ash: [EXPAND] Split unquoted $@/$* correctly when IFS is set but emptyDenys Vlasenko
2016-10-01ash: fix "return N" not setting $? in loop conditionalsDenys Vlasenko
2016-10-01ash: [ERROR] Set exitstatus in onintDenys Vlasenko