aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko2016-10-261-3/+1
| * ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko2016-10-261-9/+12
| * ash: [REDIR] Move null redirect checks into callerDenys Vlasenko2016-10-251-15/+6
| * ash: [PARSER] Do not show prompts in expandstrDenys Vlasenko2016-10-251-0/+6
| * ash: [EXPAND] Removed herefd hackDenys Vlasenko2016-10-251-39/+22
| * ash: [SHELL] Move flushall to the point just before _exitDenys Vlasenko2016-10-251-1/+1
| * ash: [EVAL] Let funcnode refer to a function definition, not its first commandDenys Vlasenko2016-10-251-4/+4
| * ash: [REDIR] Remove EMFILE special caseDenys Vlasenko2016-10-251-7/+1
| * ash: [EVAL] Check exit for eval NSUBSHELLDenys Vlasenko2016-10-251-3/+1
| * ash: add comment explaining "set -e; $(cmd)" discrepancyDenys Vlasenko2016-10-251-0/+8
| * ash: reduce code differences from upstreamDenys Vlasenko2016-10-251-2/+1
| * ash: remove unused EXSHELLPROCDenys Vlasenko2016-10-251-1/+0
| * ash: [BUILTIN] Use EXEXIT in place of EXEXECDenys Vlasenko2016-10-251-3/+2
| * ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko2016-10-251-2/+1
| * ash: explain EXP_REDIR and why we (dont) glob redir filenamesDenys Vlasenko2016-10-241-0/+11
| * ash: return exit status of nofork appletsRon Yorston2016-10-241-1/+1
| * ash: all blocks in function node copying must be SHELL_ALIGNedDenys Vlasenko2016-10-071-3/+3
| * ash: get rid of two global data variablesDenys Vlasenko2016-10-071-51/+48
* | Post-merge fixesRon Yorston2016-10-201-3/+3
* | Merge branch busybox (up to "ash: comment out free(p) just before...")Ron Yorston2016-10-191-503/+742
|\|
| * ash: comment out free(p) just before _exit, tweak some outdated commentsDenys Vlasenko2016-10-071-16/+5
| * ash: [PARSER] Add nlprompt/nlnoprompt helpersDenys Vlasenko2016-10-021-19/+23
| * whitespace fixesDenys Vlasenko2016-10-021-1/+1
| * sh: do not print empty line at the end of "help" outputDenys Vlasenko2016-10-021-1/+1
| * ash: undo "tokname hack"Denys Vlasenko2016-10-021-41/+83
| * ash: placate gcc: "warning: ! is only applied to the left hand side of =="Denys Vlasenko2016-10-021-1/+1
| * ash: fix globbing bugs when using glibc glob()Denys Vlasenko2016-10-021-7/+22
| * ash: style fixesDenys Vlasenko2016-10-021-8/+16
| * ash: support "--" in "source" builtinDenys Vlasenko2016-10-021-12/+18
| * ash: expand: Fixed "$@" expansion when EXP_FULL is falseDenys Vlasenko2016-10-021-15/+13
| * test: memory leak: free group id listDenys Vlasenko2016-10-021-7/+5
| * ash: fix return_in_trap1.tests failureDenys Vlasenko2016-10-011-23/+28
| * ash: [EXPAND] Optimise nulonly away and just use quoted as beforeDenys Vlasenko2016-10-011-12/+11
| * ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIMDenys Vlasenko2016-10-011-30/+22
| * ash: [EXPAND] Split unquoted $@/$* correctly when IFS is set but emptyDenys Vlasenko2016-10-011-5/+9
| * ash: fix "return N" not setting $? in loop conditionalsDenys Vlasenko2016-10-011-27/+29
| * ash: [ERROR] Set exitstatus in onintDenys Vlasenko2016-10-011-6/+9
| * ash: [EVAL] Revert SKIPEVAL into EXEXITDenys Vlasenko2016-10-011-14/+6
| * ash: [EVAL] Pass EV_TESTED into evalcmdDenys Vlasenko2016-10-011-14/+19
| * ash: fix a thinko in the last commitDenys Vlasenko2016-10-011-1/+1
| * ash: make internal globbing code selectable from configDenys Vlasenko2016-10-011-32/+50
| * ash: explain how "command" is handled, and shrink it a bitDenys Vlasenko2016-10-011-40/+48
| * ash: [VAR] Initialise OPTIND after importing environmentDenys Vlasenko2016-09-301-1/+3
| * ash: [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving d...Denys Vlasenko2016-09-301-3/+2
| * ash: Avoid overflow for very long variable nameDenys Vlasenko2016-09-301-1/+1
| * ash: [VAR] Sanitise environment variable names on entryDenys Vlasenko2016-09-301-1/+2
| * ash: [EVAL] Avoid using undefined handlerDenys Vlasenko2016-09-301-2/+2
| * ash: remove dead stores and unused variablesDenys Vlasenko2016-09-301-3/+1
| * ash: [MEMALLOC] Add pushstackmarkDenys Vlasenko2016-09-301-34/+19
| * ash: fix arithmetic closing )) split by backslash-newlineDenys Vlasenko2016-09-291-1/+2