aboutsummaryrefslogtreecommitdiff
path: root/messages.c (unfollow)
Commit message (Expand)AuthorFilesLines
13 daysash: implement <<<here_string syntaxDenys Vlasenko3-26/+129
2025-08-18hush: fix several syntax corner cases with function definitionsDenys Vlasenko9-2/+37
2025-08-18hush: shrink "function" codeDenys Vlasenko1-11/+11
2025-08-18hush: do not SEGV on if { echo foo; } then { echo bar; } fiDenys Vlasenko1-5/+4
2025-08-18hush: disentangle keyword detection, no logic changesDenys Vlasenko1-25/+27
2025-08-17hush: make "function" keyword support optionalDenys Vlasenko1-11/+22
2025-08-17hush: with --login, errors /etc/profile in must not exit shellDenys Vlasenko1-3/+8
2025-08-17hush: recognize "function FUNC { cmd; }" syntaxDenys Vlasenko1-43/+103
2025-08-17hush: remove always-true conditionalDenys Vlasenko1-1/+0
2025-08-17hush: fix infinite loop expanding alias a="nice&&a"Denys Vlasenko1-6/+45
2025-08-17hush: comment fixesDenys Vlasenko1-2/+1
2025-08-17hush: make "alias" print aliases in properly escaped formDenys Vlasenko1-31/+21
2025-08-17hush: fix nested alias expansionDenys Vlasenko1-5/+10
2025-08-17hush: optional alias supportDenys Vlasenko1-44/+388
2025-08-16hush: optimization in set_local_var()Denys Vlasenko1-6/+6
2025-08-15hush: implement <<<here_string syntaxDenys Vlasenko3-41/+137
2025-08-14hush: allow faster parsing for "./:@" charactersDenys Vlasenko1-2/+7
2025-08-14hush: shrink syntax error handlingDenys Vlasenko1-28/+52
2025-08-14hush: undo incorrect change which allows a'b'=c to be assignmentDenys Vlasenko5-22/+20
2025-08-14hush: explain "empty quoted str marker" trickDenys Vlasenko1-5/+11
2025-08-14hush: improve code readability, no logic changesDenys Vlasenko1-22/+25
2025-08-14hush: move tickquote1.tests to hush-bugs/ - it's a known bugDenys Vlasenko2-0/+0
2025-08-14hush: remove the is_blank danceDenys Vlasenko5-76/+75
2025-08-14hush: remove two strchr's from the hottest parsing loopDenys Vlasenko1-88/+85
2025-08-13hush: optimize decoding of $'str' - avoid extra function call if we canDenys Vlasenko1-5/+4
2025-08-13hush: shrink i_getch, rename two functionsDenys Vlasenko1-28/+23
2025-08-13hush: ~5% faster parsing of typical shell scriptsDenys Vlasenko1-13/+19
2025-08-13hush: create a macro IS_NULL_WORD to test for null shell wordDenys Vlasenko1-16/+14
2025-08-13hush: fix a corner case in "case" stmt, ctx_dsemicolon is in fact unusedDenys Vlasenko5-53/+55
2025-08-12hush: allow nested negation "! ! ! CMD" - bash 5.2.15 allows itDenys Vlasenko3-73/+71
2025-08-12hush: drop ctx_inverted, use pipe->pi_invertedDenys Vlasenko2-20/+25
2025-08-12hush: do not segfault on "for </dev/null v in..."Denys Vlasenko3-113/+124
2025-08-11hush: test for, and disallow several invalid syntaxesDenys Vlasenko21-25/+96
2025-08-11ash: parser: Invalid redirections are run-time, not syntax errorsDenys Vlasenko1-1/+1
2025-08-11hush: fix var_backslash1.testsDenys Vlasenko5-68/+138
2025-08-11shells: testcase: add another test for EINTR on fifo openDenys Vlasenko4-0/+32
2025-08-11*: code shrink using sigprocmask2() where appropriateDenys Vlasenko2-12/+12
2025-08-10ash: converge waiting code to dash in its form, add comments, no code changesDenys Vlasenko1-26/+30
2025-08-10ash: move 100 bytes off global .data / .bss, no logic changesDenys Vlasenko1-61/+62
2025-08-09ash: redir: Retry open on EINTRDenys Vlasenko5-67/+119
2025-08-09ash: eval: Reset handler when entering a subshellDenys Vlasenko1-3/+16
2025-08-09ahs: jobs: Block signals during tcsetpgrpDenys Vlasenko1-1/+16
2025-08-09ash: eval: Add vfork supportDenys Vlasenko4-37/+117
2025-08-09ash: rename got_sigchld, doing_jobctl, and INT_ON/OFF to match dashDenys Vlasenko1-150/+150
2025-08-09ash: fix fallout of no-more-set commandnameDenys Vlasenko1-6/+7
2025-08-09shells: fix a typo in var_backslash1.tests, expand it while at itDenys Vlasenko4-8/+12
2025-08-09ash: eval: Always set exitstatus in evaltreeDenys Vlasenko1-6/+7
2025-08-09ash: options: Do not set commandname in procargsDenys Vlasenko1-3/+2
2025-08-09ash: jobs: drop unused node parameter in makejob()Denys Vlasenko1-6/+6
2025-08-09shells: add testsuite itemDenys Vlasenko4-0/+124