summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-07-27hush: add missed "undef"Denys Vlasenko
2021-07-26hush: implement $'str' bashismDenys Vlasenko
2021-07-25ahell: update testsuiteDenys Vlasenko
2021-07-25ash: speed up ${v//pattern/repl}Denys Vlasenko
2021-07-22ash: speed up ${v//pattern/repl} if !ASH_OPTIMIZE_FOR_SIZEDenys Vlasenko
2021-07-20cut: add toybox-compatible options -O OUTSEP, -D, -F LISTRob Landley
2021-07-14awk: whitespace and debugging tweaksDenys Vlasenko
2021-07-14vi: remove redundant assignmentDenys Vlasenko
2021-07-14awk: disallow break/continue outside of loopsDenys Vlasenko
2021-07-14awk: tighten parsing - disallow extra semicolonsDenys Vlasenko
2021-07-13vi: fix regex search compilation errorRon Yorston
2021-07-13vi: somewhat more readable code, no logic changesDenys Vlasenko
2021-07-13vi: allow delimiter in ':s' to be escapedRon Yorston
2021-07-13vi: allow regular expressions in ':s' commandsDenys Vlasenko
2021-07-13vi: improve handling of anchored searchesRon Yorston
2021-07-13vi: use basic regular expressions for searchRon Yorston
2021-07-13vi: allow 'gg' to specify a rangeRon Yorston
2021-07-12awk: in parsing, remove superfluous NEWLINE check; optimize builtin arg evalu...Denys Vlasenko
2021-07-12awk: fix printf "%-10c", 0Denys Vlasenko
2021-07-11awk: fix corner case in awk_printfDenys Vlasenko
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-02awk: move match() code out-of-lineDenys Vlasenko
2021-07-02awk: use smaller regmatch_t arrays, they had 2 elements for no apparent reasonDenys Vlasenko
2021-07-02awk: 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