aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * hush: comment fixesDenys Vlasenko2025-08-171-2/+1
| * hush: make "alias" print aliases in properly escaped formDenys Vlasenko2025-08-171-31/+21
| * hush: fix nested alias expansionDenys Vlasenko2025-08-171-5/+10
| * hush: optional alias supportDenys Vlasenko2025-08-171-44/+388
| * hush: optimization in set_local_var()Denys Vlasenko2025-08-161-6/+6
| * hush: implement <<<here_string syntaxDenys Vlasenko2025-08-153-41/+137
| * hush: allow faster parsing for "./:@" charactersDenys Vlasenko2025-08-141-2/+7
| * hush: shrink syntax error handlingDenys Vlasenko2025-08-141-28/+52
| * hush: undo incorrect change which allows a'b'=c to be assignmentDenys Vlasenko2025-08-145-22/+20
| * hush: explain "empty quoted str marker" trickDenys Vlasenko2025-08-141-5/+11
| * hush: improve code readability, no logic changesDenys Vlasenko2025-08-141-22/+25
| * hush: move tickquote1.tests to hush-bugs/ - it's a known bugDenys Vlasenko2025-08-142-0/+0
| * hush: remove the is_blank danceDenys Vlasenko2025-08-145-76/+75
| * hush: remove two strchr's from the hottest parsing loopDenys Vlasenko2025-08-141-88/+85
| * hush: optimize decoding of $'str' - avoid extra function call if we canDenys Vlasenko2025-08-131-5/+4
| * hush: shrink i_getch, rename two functionsDenys Vlasenko2025-08-131-28/+23
| * hush: ~5% faster parsing of typical shell scriptsDenys Vlasenko2025-08-131-13/+19
| * hush: create a macro IS_NULL_WORD to test for null shell wordDenys Vlasenko2025-08-131-16/+14
| * hush: fix a corner case in "case" stmt, ctx_dsemicolon is in fact unusedDenys Vlasenko2025-08-135-53/+55
| * hush: allow nested negation "! ! ! CMD" - bash 5.2.15 allows itDenys Vlasenko2025-08-123-73/+71
| * hush: drop ctx_inverted, use pipe->pi_invertedDenys Vlasenko2025-08-122-20/+25
| * hush: do not segfault on "for </dev/null v in..."Denys Vlasenko2025-08-123-113/+124
| * hush: test for, and disallow several invalid syntaxesDenys Vlasenko2025-08-1121-25/+96
| * ash: parser: Invalid redirections are run-time, not syntax errorsDenys Vlasenko2025-08-111-1/+1
| * hush: fix var_backslash1.testsDenys Vlasenko2025-08-115-68/+138
| * shells: testcase: add another test for EINTR on fifo openDenys Vlasenko2025-08-114-0/+32
| * *: code shrink using sigprocmask2() where appropriateDenys Vlasenko2025-08-112-12/+12
| * ash: converge waiting code to dash in its form, add comments, no code changesDenys Vlasenko2025-08-101-26/+30
* | Merge branch 'busybox' into mergeRon Yorston2025-09-100-0/+0
|\|
| * ash: move 100 bytes off global .data / .bss, no logic changesDenys Vlasenko2025-08-101-61/+62
| * ash: redir: Retry open on EINTRDenys Vlasenko2025-08-095-67/+119
| * ash: eval: Reset handler when entering a subshellDenys Vlasenko2025-08-091-3/+16
| * ahs: jobs: Block signals during tcsetpgrpDenys Vlasenko2025-08-091-1/+16
| * ash: eval: Add vfork supportDenys Vlasenko2025-08-094-37/+117
| * ash: rename got_sigchld, doing_jobctl, and INT_ON/OFF to match dashDenys Vlasenko2025-08-091-150/+150
* | ash: move 100 bytes off global .data / .bss, no logic changesRon Yorston2025-09-101-80/+79
* | shells: add tests missing from last commitRon Yorston2025-09-104-0/+30
* | ash: redir: Retry open on EINTRRon Yorston2025-09-102-69/+93
* | ash: eval: Reset handler when entering a subshellRon Yorston2025-09-091-14/+33
* | ash: jobs: Block signals during tcsetpgrpRon Yorston2025-09-071-1/+16
* | ash: eval: Add vfork supportRon Yorston2025-09-074-36/+128
* | ash: rename got_sigchld, doing_jobctl, and INT_ON/OFF to match dashRon Yorston2025-09-071-158/+158
* | Merge branch 'busybox' into mergeRon Yorston2025-09-0623-109/+353
|\|
| * ash: fix fallout of no-more-set commandnameDenys Vlasenko2025-08-091-6/+7
| * shells: fix a typo in var_backslash1.tests, expand it while at itDenys Vlasenko2025-08-094-8/+12
| * ash: eval: Always set exitstatus in evaltreeDenys Vlasenko2025-08-091-6/+7
| * ash: options: Do not set commandname in procargsDenys Vlasenko2025-08-091-3/+2
| * ash: jobs: drop unused node parameter in makejob()Denys Vlasenko2025-08-091-6/+6
| * shells: add testsuite itemDenys Vlasenko2025-08-094-0/+124
| * ash: reuse vstype_suffix[] in debug code, shrink itDenys Vlasenko2025-08-081-35/+37