1. 458c1f2 ash: [JOBS] Fix dowait signal race by Denys Vlasenko · 8 years ago
  2. c0663c7 ash: [SIGNAL] Remove EXSIG by Denys Vlasenko · 8 years ago
  3. 6918811 ash: open-code blocking_dowait_with_raise_on_sig() by Denys Vlasenko · 8 years ago
  4. b543bda ash: return to DOWAIT_* constants similar to dash, no logic changes by Denys Vlasenko · 8 years ago
  5. 3f44a6b ash: delete leftovers from "simplify EOF/newline handling in list parser" commit by Denys Vlasenko · 8 years ago
  6. 5ac04f2 ash: [EXPAND] Fix ifsfirst/ifslastp leak by Denys Vlasenko · 8 years ago
  7. 455e422 ash: move ifsbreakup() and ifsfree() up by Denys Vlasenko · 8 years ago
  8. b4f51d3 ash: partially sync with dash on "fork if traps are set" logic by Denys Vlasenko · 8 years ago
  9. 2eb0a7e ash: [SHELL] Expand ENV before using it by Denys Vlasenko · 8 years ago
  10. 7039233 ash: comment tweaks, no code changes by Denys Vlasenko · 8 years ago
  11. 65a8b85 ash: optimize tryexec(): avoid one allocation by Denys Vlasenko · 8 years ago
  12. 0e081d0 ash: [CD] Lookup PWD after going through CDPATH by Denys Vlasenko · 8 years ago
  13. a318bba ash: [MEMALLOC] Made grabstackblock an inline wrapper for stalloc by Denys Vlasenko · 8 years ago
  14. dbef38a ash: [VAR] Remove setvarsafe by Denys Vlasenko · 8 years ago
  15. 35c2a13 ash: use shellparam.optind/optoff in getopts() directly, not through pointers by Denys Vlasenko · 8 years ago
  16. 3df1410 ash: [PARSER] Size optimisations in parameter expansion parser by Denys Vlasenko · 8 years ago
  17. 350e686 ash: [PARSER] Recognise here-doc delimiters terminated by EOF by Denys Vlasenko · 8 years ago
  18. f15aa57 ash: [PARSER] Fix parsing of ${##1} by Denys Vlasenko · 8 years ago
  19. e19923f ash: [REDIR] Remove redundant CLOEXEC calls by Denys Vlasenko · 8 years ago
  20. 6477460 ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhere by Denys Vlasenko · 8 years ago
  21. a513bf3 ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1 by Denys Vlasenko · 8 years ago
  22. 88e1570 ash: [PARSER] Report substition errors at expansion time by Denys Vlasenko · 8 years ago
  23. eaf9436 ash: [REDIR] Move null redirect checks into caller by Denys Vlasenko · 8 years ago
  24. 2a6d29a ash: [PARSER] Do not show prompts in expandstr by Denys Vlasenko · 8 years ago
  25. 579ad10 ash: [EXPAND] Removed herefd hack by Denys Vlasenko · 8 years ago
  26. caee80c ash: [SHELL] Move flushall to the point just before _exit by Denys Vlasenko · 8 years ago
  27. 7aec868 ash: [EVAL] Let funcnode refer to a function definition, not its first command by Denys Vlasenko · 8 years ago
  28. 20a2cd6 ash: [REDIR] Remove EMFILE special case by Denys Vlasenko · 8 years ago
  29. cf98b0c ash: [EVAL] Check exit for eval NSUBSHELL by Denys Vlasenko · 8 years ago
  30. 960ca38 ash: add comment explaining "set -e; $(cmd)" discrepancy by Denys Vlasenko · 8 years ago
  31. 6a94cee ash: reduce code differences from upstream by Denys Vlasenko · 8 years ago
  32. 1825e4f ash: remove unused EXSHELLPROC by Denys Vlasenko · 8 years ago
  33. 061a090 ash: [BUILTIN] Use EXEXIT in place of EXEXEC by Denys Vlasenko · 8 years ago
  34. b7adf7a ash,hush: set exit code 127 in "sh /does/not/exist" case by Denys Vlasenko · 8 years ago
  35. db74c6c ash: explain EXP_REDIR and why we (dont) glob redir filenames by Denys Vlasenko · 8 years ago
  36. 5ccb0e9 ash: return exit status of nofork applets by Ron Yorston · 8 years ago
  37. 561639a ash: all blocks in function node copying must be SHELL_ALIGNed by Denys Vlasenko · 8 years ago
  38. 4c438b5 ash: get rid of two global data variables by Denys Vlasenko · 8 years ago
  39. f37e115 ash: comment out free(p) just before _exit, tweak some outdated comments by Denys Vlasenko · 8 years ago
  40. ce332a2 ash: [PARSER] Add nlprompt/nlnoprompt helpers by Denys Vlasenko · 8 years ago
  41. 80729a4 whitespace fixes by Denys Vlasenko · 8 years ago
  42. ebedb94 sh: do not print empty line at the end of "help" output by Denys Vlasenko · 8 years ago
  43. 888527c ash: undo "tokname hack" by Denys Vlasenko · 8 years ago
  44. bc1a008 ash: placate gcc: "warning: ! is only applied to the left hand side of ==" by Denys Vlasenko · 8 years ago
  45. 8e2c9cc ash: fix globbing bugs when using glibc glob() by Denys Vlasenko · 8 years ago
  46. 37dc08b ash: style fixes by Denys Vlasenko · 8 years ago
  47. 0cdb7ea ash: support "--" in "source" builtin by Denys Vlasenko · 8 years ago
  48. 0aaaa50 ash: expand: Fixed "$@" expansion when EXP_FULL is false by Denys Vlasenko · 8 years ago
  49. de89205 test: memory leak: free group id list by Denys Vlasenko · 8 years ago
  50. b98b4c1 ash: fix return_in_trap1.tests failure by Denys Vlasenko · 8 years ago
  51. 0dd8e45 ash: [EXPAND] Optimise nulonly away and just use quoted as before by Denys Vlasenko · 8 years ago
  52. 88ac97d ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIM by Denys Vlasenko · 8 years ago
  53. c4d4380 ash: [EXPAND] Split unquoted $@/$* correctly when IFS is set but empty by Denys Vlasenko · 8 years ago
  54. 35ec818 ash: fix "return N" not setting $? in loop conditionals by Denys Vlasenko · 8 years ago
  55. 4d12e94 ash: [ERROR] Set exitstatus in onint by Denys Vlasenko · 8 years ago
  56. 0840c91 ash: [EVAL] Revert SKIPEVAL into EXEXIT by Denys Vlasenko · 8 years ago
  57. 7b3fa1e ash: [EVAL] Pass EV_TESTED into evalcmd by Denys Vlasenko · 8 years ago
  58. 08089c7 ash: fix a thinko in the last commit by Denys Vlasenko · 8 years ago
  59. 514b51d ash: make internal globbing code selectable from config by Denys Vlasenko · 8 years ago
  60. cac4d00 ash: explain how "command" is handled, and shrink it a bit by Denys Vlasenko · 8 years ago
  61. e627ac9 ash: [VAR] Initialise OPTIND after importing environment by Denys Vlasenko · 8 years ago
  62. 6a0710e ash: [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving dotcmd by Denys Vlasenko · 8 years ago
  63. 50e6d42 ash: Avoid overflow for very long variable name by Denys Vlasenko · 8 years ago
  64. b6838b5 ash: [VAR] Sanitise environment variable names on entry by Denys Vlasenko · 8 years ago
  65. a2d121c ash: [EVAL] Avoid using undefined handler by Denys Vlasenko · 8 years ago
  66. 53d6e03 ash: remove dead stores and unused variables by Denys Vlasenko · 8 years ago
  67. 60ca834 ash: [MEMALLOC] Add pushstackmark by Denys Vlasenko · 8 years ago
  68. 459293b ash: fix arithmetic closing )) split by backslash-newline by Denys Vlasenko · 8 years ago
  69. 73c3e07 ash: [PARSER] Handle backslash newlines properly after dollar sign by Denys Vlasenko · 8 years ago
  70. 3b4d04b ash: input: Allow two consecutive calls to pungetc by Denys Vlasenko · 8 years ago
  71. 46a45ce ash: jobs: Don't attempt to access job table for job %0 by Denys Vlasenko · 8 years ago
  72. 928e2a7 ash: [EVAL] Make eval with empty arguments return 0 by Denys Vlasenko · 8 years ago
  73. 8e2bc47 ash: [EVAL] Fix use-after-free in dotrap/evalstring by Denys Vlasenko · 8 years ago
  74. 7ee7c6f ash: Remove unused EV_BACKCMD flag by Denys Vlasenko · 8 years ago
  75. eb17b6f ash: eval: Return status in eval functions by Denys Vlasenko · 8 years ago
  76. 557482c ash: in heredoc code, fix access past the end of allocated memory. Closes 9276 by Denys Vlasenko · 8 years ago
  77. 13f2091 ash: fix handling of NULs in $'abc\000def\x00asd'. Closes 9286 by Denys Vlasenko · 8 years ago
  78. b3f29b4 ash: use glob() from libc by Denys Vlasenko · 8 years ago
  79. 244fdd4 ash: fix handling of bashism $'xxx' with high-bit chars. Closes 9236 by Denys Vlasenko · 8 years ago
  80. 204c7fb ash: exit after subshell error when errexit option is set by Rostislav Skudnov · 8 years ago
  81. 7373759 fix "aloc" -> "alloc" typos by Denys Vlasenko · 8 years ago
  82. 7bc3d39 ash: add a FIXME for bug 9246 by Denys Vlasenko · 8 years ago
  83. ef15970 *: placate some compile warnings on OSX by Denys Vlasenko · 8 years ago
  84. f8ddbe1 ash: fix handling of ${VAR: -2} by Denys Vlasenko · 8 years ago
  85. e5814a5 ash: do not leave SIGQUIT ignored on "exec CMD" by Denys Vlasenko · 8 years ago
  86. 3e134eb *: slap on a few ALIGN1/2s where appropriate by Denys Vlasenko · 9 years ago
  87. 84ba50c ash: bash-compatible $'...' shouldn't expand in double quotes by Ron Yorston · 9 years ago
  88. 2b91958 Rewrite iteration through applet names to save a few bytes by Ron Yorston · 9 years ago
  89. 3e3bfb8 ash: fix corruption of ${#var} if $var contains UTF-8 characters by Ron Yorston · 9 years ago
  90. 40eea69 Fix compiling with musl's utmp stubs by Kylie McClain · 9 years ago
  91. c2a2625 ash: suppress a compilation warning by Cristian Ionescu-Idbohrn · 9 years ago
  92. 95ebcf7 ash: add support for bash 'function' keyword by Ron Yorston · 9 years ago
  93. 95650a8 ash: allow popredir to be called if the stack is empty by Ron Yorston · 9 years ago
  94. 8c55dc7 ash: fix EXEXEC status clobbering by Ron Yorston · 9 years ago
  95. c0e0076 ash: simplify EOF/newline handling in list parser by Ron Yorston · 9 years ago
  96. 6bd2fab Revert "ash: fix a SEGV case in an invalid heredoc" xxx by Ron Yorston · 9 years ago
  97. 713f07d ash: fix error during recursive processing of here document by Ron Yorston · 9 years ago
  98. ef2386b ash: only allow local variables in functions by Ron Yorston · 9 years ago
  99. 3f22111 ash: respect -p flag when command builtin is run with -v/-V by Ron Yorston · 9 years ago
  100. e2f32c0 ash: fix command -- crash by Denys Vlasenko · 9 years ago