aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* awk: fix detection of VAR=VAL argumentsDenys Vlasenko2021-07-021-5/+4
* awk: fix beavior of "exit" without parameterDenys Vlasenko2021-07-022-18/+27
* awk: rand() could return 1.0, fix this - should be in [0,1)Denys Vlasenko2021-07-021-2/+13
* awk: beautify builtins table, no code changesDenys Vlasenko2021-07-021-12/+14
* awk: enforce simple builtins' argument numberDenys Vlasenko2021-07-021-17/+28
* awk: make builtin definitions more understandable, no code changesDenys Vlasenko2021-07-021-22/+49
* awk: do not special-case "delete"Denys Vlasenko2021-07-021-29/+27
* awk: shuffle globals for smaller offsetsDenys Vlasenko2021-07-021-12/+13
* awk: use "static" tmpvars in main and exitDenys Vlasenko2021-07-021-12/+5
* awk: when parsing length(), simplify eating of LPARENDenys Vlasenko2021-07-021-3/+4
* awk: shuffle functions to reduce forward declarations, no code changesDenys Vlasenko2021-07-021-98/+94
* awk: use static tmpvars instead of nvalloc(1)ed onesDenys Vlasenko2021-07-011-15/+34
* awk: rename temp variables, no code changesDenys Vlasenko2021-07-011-30/+46
* awk: evaluate all, even superfluous function argsDenys Vlasenko2021-06-302-8/+19
* awk: rewrite "print" logic a bit to make it clearerDenys Vlasenko2021-06-301-5/+4
* awk: allow empty fuinctions with no arguments, disallow function redefinitionsDenys Vlasenko2021-06-302-4/+17
* awk: replace incorrect use of union in undefined function check (no code chan...Denys Vlasenko2021-06-301-1/+1
* awk: remove custom pool allocator for temporary awk variablesDenys Vlasenko2021-06-301-103/+61
* modprobe: when reading modules.builtin, use basenames of files from itDenys Vlasenko2021-06-301-1/+2
* awk: assorted optimizationsDenys Vlasenko2021-06-291-9/+17
* awk: free unused parsing structures after parse is doneDenys Vlasenko2021-06-291-27/+47
* awk: document which hashes are used at what state (parse/execute)Denys Vlasenko2021-06-291-10/+20
* awk: fix parsing of expressions such as "v (a)"Denys Vlasenko2021-06-292-4/+29
* awk: deindent a block, no code changesDenys Vlasenko2021-06-291-84/+83
* awk: code shrinkDenys Vlasenko2021-06-291-7/+11
* awk: get rid of "move name one char back" trick in next_token()Denys Vlasenko2021-06-291-27/+27
* awk: when parsing TC_FUNCTION token, eat its opening '('Denys Vlasenko2021-06-291-15/+15
* awk: g_buf[] does not need a separate allocationDenys Vlasenko2021-06-291-5/+3
* awk: simplify parsing of function declarationDenys Vlasenko2021-06-291-16/+10
* awk: rename TC_SEQSTART/END to L/RPAREN, no code changesDenys Vlasenko2021-06-291-47/+47
* awk: deindent code block, no code changesDenys Vlasenko2021-06-291-87/+90
* awk: use TS_foo for combined token classes. No code changesDenys Vlasenko2021-06-291-64/+64
* awk: make ltclass ("last token class") local to next_token()Denys Vlasenko2021-06-291-14/+10
* awk: remove redundant checkDenys Vlasenko2021-06-291-14/+18
* vi: stored search pattern applies to ':s'Ron Yorston2021-06-271-0/+12
* ls: revert last change (short name must be allocated)Denys Vlasenko2021-06-251-1/+1
* awk: move locals deeper into scopes where they are used, no logic changesDenys Vlasenko2021-06-251-30/+32
* awk: more efficient -f FILE, document what "some trick in next_token" isDenys Vlasenko2021-06-251-9/+24
* ash: parser: Fix VSLENGTH parsing with trailing garbageDenys Vlasenko2021-06-251-6/+3
* ash: revert accidental change (should have been separate)Denys Vlasenko2021-06-251-3/+6
* fdisk: commonalize stringsDenys Vlasenko2021-06-251-2/+2
* cp,mv: fix -t DIR optionRon Yorston2021-06-253-4/+20
* xxd: compat tweak for -iDenys Vlasenko2021-06-251-6/+9
* uniq: really support -zRon Yorston2021-06-241-1/+1
* switch_root: code shrink - use iterate_on_dir()Denys Vlasenko2021-06-241-21/+14
* libbb: do not check closedir() in remove_file()Denys Vlasenko2021-06-241-5/+1
* nproc: code shrinkDenys Vlasenko2021-06-241-1/+1
* ls: code shrinkDenys Vlasenko2021-06-241-1/+1
* taskset: use iterate_on_dir()Denys Vlasenko2021-06-241-18/+17
* move iterate_on_dir() from e2fsprogs to libbbDenys Vlasenko2021-06-244-32/+33