typo fix in comment
[oweals/busybox.git] / shell /
2016-09-25 Denys Vlasenkoash: in heredoc code, fix access past the end of alloca...
2016-09-25 Denys Vlasenkoash: fix handling of NULs in $'abc\000def\x00asd'....
2016-09-21 Denys Vlasenkoash: use glob() from libc
2016-09-20 Denys Vlasenkoash: fix handling of bashism $'xxx' with high-bit chars...
2016-09-20 Denys Vlasenkohush: document better where bad redirect syntax is...
2016-09-17 Rostislav Skudnovash: exit after subshell error when errexit option...
2016-09-17 Denys Vlasenkofix "aloc" -> "alloc" typos
2016-09-17 Denys Vlasenkoash: add a FIXME for bug 9246
2016-09-01 Denys Vlasenko*: placate some compile warnings on OSX
2016-08-22 Denys Vlasenkohush: fix "redirects can close script fd" bug
2016-08-20 Denys Vlasenkohush: do not leak script fds into NOEXEC children
2016-08-20 Denys Vlasenkohush: bit better comments in redirect code. No logic...
2016-08-19 Denys Vlasenkohush: `cmd` and arithmetic also need the fix for FILE...
2016-08-19 Denys Vlasenkohush: fix a bug in FEATURE_SH_STANDALONE=y config....
2016-07-25 Denys Vlasenkoash: fix handling of ${VAR: -2}
2016-07-22 Denys Vlasenkoconfig: disentangle PREFER_APPLETS from SH_STANDALONE...
2016-07-21 Denys Vlasenkohush: fix a possible bug
2016-07-16 Denys Vlasenkoash: do not leave SIGQUIT ignored on "exec CMD"
2016-04-22 Denys Vlasenko*: slap on a few ALIGN1/2s where appropriate
2016-04-15 Ron Yorstonash: bash-compatible $'...' shouldn't expand in double...
2016-04-15 Ron YorstonRewrite iteration through applet names to save a few...
2016-03-22 Mike Frysingerash_test: ignore generated files
2016-03-22 Mike Frysingerash_test: printenv: fix missing includes
2016-03-22 Ron Yorstonash: fix corruption of ${#var} if $var contains UTF...
2016-02-01 Kylie McClainFix compiling with musl's utmp stubs
2016-01-01 Cristian Ionescu... ash: suppress a compilation warning
2015-11-04 Ron Yorstonash: add support for bash 'function' keyword
2015-11-04 Denys Vlasenkohush-misc/func_args1.tests: remove "UNFIXED BUG", it...
2015-11-04 Ron Yorstonash: copy function tests from hush testsuite
2015-10-30 Ron Yorstonash: allow popredir to be called if the stack is empty
2015-10-30 Ron Yorstonash: fix EXEXEC status clobbering
2015-10-30 Ron Yorstonash: add tests for failures of the exec and command...
2015-10-29 Denys Vlasenkohush: copy for.tests from ash testsuite
2015-10-29 Ron Yorstonash: simplify EOF/newline handling in list parser
2015-10-29 Ron YorstonRevert "ash: fix a SEGV case in an invalid heredoc...
2015-10-29 Ron Yorstonash: fix error during recursive processing of here...
2015-10-29 Denys Vlasenkoash tests: make test print test name before it is run
2015-10-29 Ron Yorstonash: only allow local variables in functions
2015-10-29 Ron Yorstonash: respect -p flag when command builtin is run with...
2015-10-29 Denys Vlasenkoash: fix command -- crash
2015-10-29 Ron Yorstonash: save a few bytes in code to parse case statements
2015-10-29 Ron Yorstonash: allow newline after variable name in for loop
2015-10-29 Ron Yorstonash: add test for issue with here document
2015-10-23 Denys Vlasenkotidy up strtok use
2015-10-12 Denys Vlasenkotypo fix
2015-10-11 Denys Vlasenkohush: code shrink
2015-10-10 Denys Vlasenkoash: shrink umask code
2015-10-09 Denys Vlasenkoremove global "jmp_buf die_jmp" from !FEATURE_PREFER_AP...
2015-10-09 Denys Vlasenkoash: "you have mail" should ignore first change in...
2015-10-09 Denys Vlasenkoash: simplify "you have mail" code
2015-10-09 Denys Vlasenkoash: make dowait() a bit more readable. Logic is unchanged
2015-10-07 Denys Vlasenkobuild system: -fno-builtin-printf
2015-10-07 Denys Vlasenkoash: use a more typical form of "print four octal digit...
2015-10-07 Denys Vlasenkolibbb: more compact API for bb_parse_mode()
2015-10-07 Denys Vlasenkoash: shrink "umask -S" code
2015-10-07 Denys Vlasenkohush: fix umask: umask(022) was setting umask(755)
2015-10-07 Denys Vlasenkoash: a bunch of trivial simplifications
2015-09-04 Ron Yorstonash: fix slash treatment in expmeta
2015-09-04 Denys Vlasenkohush: fix a nommu bug where a part of function body...
2015-09-04 Denys Vlasenkoash,hush: add a test which fails for ash since commit...
2015-09-04 Denys Vlasenkoash: add tests adapted from hush glob tests. glob2...
2015-07-19 Ron Yorstonlibbb: add a function to make a copy of a region of...
2015-07-13 Ron Yorstonash: use alloca to get rid of setjmp
2015-07-13 Denys Vlasenkofix file mode
2015-07-13 Ron Yorstonash: remove parsebackquote flag
2015-07-13 Maninder SinghRemoves stray empty line from code
2015-05-25 Maninder Singhtypo fixes
2015-05-18 Denys Vlasenkohush: add recent ash tests to hush testsuite too (they...
2015-05-18 Ron Yorstontestsuite: add some tests for ash
2015-05-18 Ron Yorstonash: fix breakage of ${v/pat/str}
2015-05-18 Ron Yorstonash: move parse-time quote flag detection to run-time
2015-05-18 Ron Yorstonash: remove arithmetic expansion collapsing at parse...
2015-05-18 Ron Yorstonash: remove superfluous code in arithmetic mode
2015-05-18 Ron Yorstonash: do not expand tilde in parameter expansion within...
2015-05-18 Ron Yorstonash: perform tilde expansion in all parameter expansion...
2015-05-18 Ron Yorstonash: code shrink around varvalue
2015-05-13 Denys Vlasenkoash: explain what "local -" does
2015-05-13 Eugene Rudoyash: consider "local -" case while iterating over local...
2015-04-20 Ron Yorstonlibbb: remove unnecessary argument to nonblock_immune_read
2015-04-18 Denys Vlasenkohush: document buggy handling of duplicate "local"
2015-04-18 Denys Vlasenkoash: fix handling of duplicate "local"
2015-03-22 Ron Yorstonash: do not split the result of tilde expansion
2015-03-12 Denys Vlasenkolibbb: introduce and use is_prefixed_with()
2015-02-05 Denys Vlasenkoash: fix a SEGV case in an invalid heredoc
2014-12-28 Denys Vlasenkoash: fix a SEGV in ${#1}
2014-11-20 Denys Vlasenkotypo fix in comment
2014-11-18 Denys Vlasenkoash,hush: do not segfault on $((2**63 / -1))
2014-11-17 Denys Vlasenkoash: fix handling of negative start value in ${v:start...
2014-09-08 Denys Vlasenkoash: fix off-by-one in "jobs %4" handling. closes 7310
2014-09-08 Denys Vlasenkoash: factor out ASH_HELP config option
2014-08-13 Denys Vlasenkoash: make ${#var} unicode-aware
2014-08-13 Denys Vlasenkoash,hush: run reinit_unicode() only if makes sense
2014-08-13 Denys Vlasenkohush: make ${#var} unicode-aware
2014-06-22 Bartosz Golaszewskilibbb: use a wrapper around sysconf(_SC_CLK_TCK) to...
2014-04-15 Denys Vlasenkoash,hush: set $HOSTNAME is bash compat. Closes 7028
2014-03-16 Denys Vlasenkoash: make "locak VAR" unset VAR (bash does that)
2014-03-15 Denys Vlasenkoash,hush: fix a thinko about 2^64-1 factorization
2014-03-14 Denys Vlasenkohush: make "true" built-in
2014-03-13 Denys Vlasenkorandom: cosmetic tweaks in debug code
2014-03-13 Denys Vlasenkoash,hush: improve randomness of $RANDOM, add easy-ish...
next