Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-07-11tc: fix for parsing of "dev IFACE" and printing of "class list"Denys Vlasenko
2021-07-11awk: unbreak "cmd" | getlineDenys Vlasenko
2021-07-11awk: unbreak "printf('%c') can output NUL" testcaseDenys Vlasenko
2021-07-11awk: undo TI_PRINT, it introduced a bug (print with any redirect acting as pr...Denys Vlasenko
2021-07-11awk: rollback_token() + chain_group() == chain_until_rbrace()Denys Vlasenko
2021-07-04awk: fix printf buffer overflowDenys Vlasenko
2021-07-03awk: simplify tests for operation classDenys Vlasenko
2021-07-03awk: restore strdup elision optimization in assignmentDenys Vlasenko
2021-07-03awk: match(): code shrinkDenys Vlasenko
2021-07-03awk: rand(): 64-bit constants should be ULLDenys Vlasenko
2021-07-03awk: do not use a copy of g_progname for node->l.new_prognameDenys Vlasenko
2021-07-03awk: support %F %a %A in printfDenys Vlasenko
2021-07-03awk: open-code TS_OPTERM, no logic changesDenys Vlasenko
2021-07-03awk: tighten rules in action parsingDenys Vlasenko
2021-07-03awk: rename GRPSTART/END to L/RBRACE, no code changesDenys Vlasenko
2021-07-03awk: move match() code out-of-lineDenys Vlasenko
2021-07-03awk: use smaller regmatch_t arrays, they had 2 elements for no apparent reasonDenys Vlasenko
2021-07-03awk: fix detection of VAR=VAL argumentsDenys Vlasenko
2021-07-02awk: fix beavior of "exit" without parameterDenys Vlasenko
2021-07-02awk: rand() could return 1.0, fix this - should be in [0,1)Denys Vlasenko
2021-07-02awk: beautify builtins table, no code changesDenys Vlasenko
2021-07-02awk: enforce simple builtins' argument numberDenys Vlasenko
2021-07-02awk: make builtin definitions more understandable, no code changesDenys Vlasenko
2021-07-02awk: do not special-case "delete"Denys Vlasenko
2021-07-02awk: shuffle globals for smaller offsetsDenys Vlasenko
2021-07-02awk: use "static" tmpvars in main and exitDenys Vlasenko
2021-07-02awk: when parsing length(), simplify eating of LPARENDenys Vlasenko
2021-07-02awk: shuffle functions to reduce forward declarations, no code changesDenys Vlasenko
2021-07-01awk: use static tmpvars instead of nvalloc(1)ed onesDenys Vlasenko
2021-07-01awk: rename temp variables, no code changesDenys Vlasenko
2021-06-30awk: evaluate all, even superfluous function argsDenys Vlasenko
2021-06-30awk: rewrite "print" logic a bit to make it clearerDenys Vlasenko
2021-06-30awk: allow empty fuinctions with no arguments, disallow function redefinitionsDenys Vlasenko
2021-06-30awk: replace incorrect use of union in undefined function check (no code chan...Denys Vlasenko
2021-06-30awk: remove custom pool allocator for temporary awk variablesDenys Vlasenko
2021-06-30modprobe: when reading modules.builtin, use basenames of files from itDenys Vlasenko
2021-06-29awk: assorted optimizationsDenys Vlasenko
2021-06-29awk: free unused parsing structures after parse is doneDenys Vlasenko
2021-06-29awk: document which hashes are used at what state (parse/execute)Denys Vlasenko
2021-06-29awk: fix parsing of expressions such as "v (a)"Denys Vlasenko
2021-06-29awk: deindent a block, no code changesDenys Vlasenko
2021-06-29awk: code shrinkDenys Vlasenko
2021-06-29awk: get rid of "move name one char back" trick in next_token()Denys Vlasenko
2021-06-29awk: when parsing TC_FUNCTION token, eat its opening '('Denys Vlasenko
2021-06-29awk: g_buf[] does not need a separate allocationDenys Vlasenko
2021-06-29awk: simplify parsing of function declarationDenys Vlasenko
2021-06-29awk: rename TC_SEQSTART/END to L/RPAREN, no code changesDenys Vlasenko
2021-06-29awk: deindent code block, no code changesDenys Vlasenko
2021-06-29awk: use TS_foo for combined token classes. No code changesDenys Vlasenko
2021-06-29awk: make ltclass ("last token class") local to next_token()Denys Vlasenko