aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * shell/math: simplify handling of unary plusDenys Vlasenko2023-06-151-3/+5
| * shell/math: explain the logic, small tweak to make code smallerDenys Vlasenko2023-06-151-10/+25
| * shell/math: fix order of expansion of variables to numbersDenys Vlasenko2023-06-153-34/+26
| * shell: document another arithmetic discrepancy with bashDenys Vlasenko2023-06-152-0/+11
| * libbb: code shrink: introduce and use [_]exit_FAILURE()Denys Vlasenko2023-06-1521-27/+40
| * shell/math: remove special code to handle a?b?c:d:e, it works without it nowDenys Vlasenko2023-06-155-9/+9
| * shell/math: fix parsing of ?: and explain why it's parsed that wayDenys Vlasenko2023-06-1511-26/+61
| * shell/math: simpler insertion of "fake" last RPARENDenys Vlasenko2023-06-151-7/+6
| * shell: sync ash/hush test scriptsDenys Vlasenko2023-06-142-8/+25
| * shell/math: trivial code shrinkDenys Vlasenko2023-06-141-4/+3
| * shell/math: fix the order of variable resolution in binopsDenys Vlasenko2023-06-149-12/+48
| * shell/math: remove now-unused second_valDenys Vlasenko2023-06-141-20/+3
| * shell/math: fix nested ?: and do not parse variables in not-taken branchDenys Vlasenko2023-06-147-43/+61
| * shell/math: remove a redundant checkDenys Vlasenko2023-06-141-6/+6
| * shell/math: document ternary ?: op's weirdness, add code commentsDenys Vlasenko2023-06-143-28/+65
| * syslogd: daemonize _after_ init (so that init errors are visible, if they occur)Denys Vlasenko2023-06-131-8/+8
| * syslogd: decrease stack usage, ~50 bytesDenys Vlasenko2023-06-131-75/+81
| * shell/math: fix one name check, other minor cleanupsDenys Vlasenko2023-06-131-8/+12
| * shell: add a few yet-failing arithmentic testsDenys Vlasenko2023-06-1310-0/+43
| * shell/math: reduce stack usageDenys Vlasenko2023-06-131-30/+36
| * shell: avoid segfault on ${0::0/0~09J}. Closes 15216Denys Vlasenko2023-06-121-4/+35
| * hush: fix expansion of space in "a=${a:+$a }c" constructDenys Vlasenko2023-06-125-1/+17
| * udhcpd: optional BOOTP supportDenys Vlasenko2023-06-126-15/+76
| * libbb: pass "" rather than NULL as format string in _nomsg functionsDenys Vlasenko2023-06-123-26/+4
* | ash: fix 'read' shell built-in (2)Ron Yorston2023-07-121-1/+12
* | ash: fix 'read' shell built-in (1)Ron Yorston2023-07-121-16/+7
* | ash: properly echo console input to 'read' built-inRon Yorston2023-07-124-4/+16
* | win32: more console input character conversionsRon Yorston2023-07-072-0/+25
* | win32: character conversion for fread(3)Ron Yorston2023-07-062-0/+17
* | win32: don't crash the console *and* handle CJK inputRon Yorston2023-07-022-20/+21
* | win32: revert to previous console input method by defaultRon Yorston2023-07-013-12/+19
* | win32: code shrink readConsoleInput_utf8Ron Yorston2023-07-012-4/+5
* | win32: remove superfluous euro codeRon Yorston2023-07-011-18/+0
* | Merge pull request #338 from avih/concpRon Yorston2023-07-011-3/+5
|\ \
| * | win32: UTF8 console input: don't spin the CPUAvi Halachmi (:avih)2023-06-301-3/+5
|/ /
* | Merge pull request #337 from avih/concpRon Yorston2023-06-303-2/+174
|\ \
| * | win32: UTF8 input: avoid timeout when delivering UTF8 bytesAvi Halachmi (:avih)2023-06-281-6/+14
| * | win32: the great UTF8 ReadConsoleInput hackAvi Halachmi (:avih)2023-06-283-2/+166
|/ /
* | win32: don't assume console CP equals OEM CPAvi Halachmi (:avih)2023-06-285-62/+61
* | win32: reduce impact of euro support (2)Ron Yorston2023-06-231-1/+3
* | win32: reduce impact of euro supportRon Yorston2023-06-231-10/+12
* | win32: make support for euro input a separate optionRon Yorston2023-06-224-12/+29
* | pgrep,pkill: remove non-functional optionsRon Yorston2023-06-221-0/+55
* | ash: standardise treatment of winxp optionRon Yorston2023-06-211-13/+41
* | ash: code shrinkRon Yorston2023-06-211-28/+20
* | win32: include UTF-8 manifestRon Yorston2023-06-205-1/+21
* | win32: more applet look-up tweaksRon Yorston2023-06-191-4/+21
* | Merge branch 'busybox' into mergeRon Yorston2023-06-1621-265/+892
|\|
| * awk: fix subst code to handle "start of word" pattern correctly (needs REG_ST...Denys Vlasenko2023-06-082-26/+51
| * awk: fix SEGV on read error in -f PROGFILEDenys Vlasenko2023-06-071-2/+2