| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | awk: rename temp variables, no code changes | Denys Vlasenko | 2021-07-01 | 1 | -30/+46 |
| * | awk: evaluate all, even superfluous function args | Denys Vlasenko | 2021-06-30 | 1 | -7/+12 |
| * | awk: rewrite "print" logic a bit to make it clearer | Denys Vlasenko | 2021-06-30 | 1 | -5/+4 |
| * | awk: allow empty fuinctions with no arguments, disallow function redefinitions | Denys Vlasenko | 2021-06-30 | 1 | -4/+7 |
| * | awk: replace incorrect use of union in undefined function check (no code chan... | Denys Vlasenko | 2021-06-30 | 1 | -1/+1 |
| * | awk: remove custom pool allocator for temporary awk variables | Denys Vlasenko | 2021-06-30 | 1 | -103/+61 |
| * | awk: assorted optimizations | Denys Vlasenko | 2021-06-29 | 1 | -9/+17 |
| * | awk: free unused parsing structures after parse is done | Denys Vlasenko | 2021-06-29 | 1 | -27/+47 |
| * | awk: document which hashes are used at what state (parse/execute) | Denys Vlasenko | 2021-06-29 | 1 | -10/+20 |
| * | awk: fix parsing of expressions such as "v (a)" | Denys Vlasenko | 2021-06-29 | 1 | -4/+18 |
| * | awk: deindent a block, no code changes | Denys Vlasenko | 2021-06-29 | 1 | -84/+83 |
| * | awk: code shrink | Denys Vlasenko | 2021-06-29 | 1 | -7/+11 |
| * | awk: get rid of "move name one char back" trick in next_token() | Denys Vlasenko | 2021-06-29 | 1 | -27/+27 |
| * | awk: when parsing TC_FUNCTION token, eat its opening '(' | Denys Vlasenko | 2021-06-29 | 1 | -15/+15 |
| * | awk: g_buf[] does not need a separate allocation | Denys Vlasenko | 2021-06-29 | 1 | -5/+3 |
| * | awk: simplify parsing of function declaration | Denys Vlasenko | 2021-06-29 | 1 | -16/+10 |
| * | awk: rename TC_SEQSTART/END to L/RPAREN, no code changes | Denys Vlasenko | 2021-06-29 | 1 | -47/+47 |
| * | awk: deindent code block, no code changes | Denys Vlasenko | 2021-06-29 | 1 | -87/+90 |
| * | awk: use TS_foo for combined token classes. No code changes | Denys Vlasenko | 2021-06-29 | 1 | -64/+64 |
| * | awk: make ltclass ("last token class") local to next_token() | Denys Vlasenko | 2021-06-29 | 1 | -14/+10 |
| * | awk: remove redundant check | Denys Vlasenko | 2021-06-29 | 1 | -14/+18 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2021-06-28 | 1 | -73/+199 |
|\| |
|
| * | awk: move locals deeper into scopes where they are used, no logic changes | Denys Vlasenko | 2021-06-25 | 1 | -30/+32 |
| * | awk: more efficient -f FILE, document what "some trick in next_token" is | Denys Vlasenko | 2021-06-25 | 1 | -9/+24 |
| * | qwk: make code clearer, no actual code changes | Denys Vlasenko | 2021-06-20 | 1 | -2/+3 |
| * | awk: after preinc/dec, only allow variable, field ref, array ref, or another ... | Denys Vlasenko | 2021-06-18 | 1 | -18/+69 |
| * | awk: fix use-after-free in "$BIGNUM1 $BIGGERNUM2" concat op | Denys Vlasenko | 2021-06-16 | 1 | -14/+71 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2021-02-05 | 1 | -3/+15 |
|\| |
|
| * | awk: allow printf('%c') to output NUL, closes 13486 | Ron Yorston | 2021-02-02 | 1 | -3/+15 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2021-01-14 | 1 | -15/+39 |
|\| |
|
| * | awk: FS regex matches only non-empty separators (gawk compat) | Denys Vlasenko | 2020-12-02 | 1 | -8/+25 |
| * | decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly | Denys Vlasenko | 2020-11-30 | 1 | -1/+1 |
| * | awk: fix dodgy multi-char separators splitting logic | Denys Vlasenko | 2020-11-16 | 1 | -9/+16 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-07-09 | 1 | -1/+3 |
|\| |
|
| * | awk: disallow "str"++, closes bug 12981 | Denys Vlasenko | 2020-06-09 | 1 | -1/+3 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2020-02-15 | 1 | -4/+18 |
|\| |
|
| * | awk: fix more "length" cases, closes 12486 | Denys Vlasenko | 2020-02-02 | 1 | -4/+18 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-08-16 | 1 | -2/+2 |
|\| |
|
| * | libbb: reduce the overhead of single parameter bb_error_msg() calls | James Byrne | 2019-07-02 | 1 | -2/+2 |
* | | win32: add a function to remove CRs from a text buffer | Ron Yorston | 2019-02-14 | 1 | -14/+5 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-02-12 | 1 | -10/+31 |
|\| |
|
| * | awk: Fix overly permissive func arg list parsing | Brian Foley | 2019-01-21 | 1 | -1/+14 |
| * | awk: Syntax error if delete isn't given an arg. | Brian Foley | 2019-01-21 | 1 | -8/+15 |
| * | awk: Guard pointer chasing when parsing ternary expressions. | Brian Foley | 2019-01-21 | 1 | -1/+2 |
* | | awk: fix handling of regular expressions that match end-of-line | Ron Yorston | 2019-01-23 | 1 | -0/+24 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2019-01-10 | 1 | -1/+1 |
|\| |
|
| * | config: update size information | Denys Vlasenko | 2018-12-28 | 1 | -1/+1 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2018-12-05 | 1 | -0/+2 |
|\| |
|
| * | awk: abort if NF set to negative value | Denys Vlasenko | 2018-11-28 | 1 | -0/+2 |
* | | Merge branch 'busybox' into merge | Ron Yorston | 2018-05-13 | 1 | -0/+3 |
|\| |
|