aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp (unfollow)
Commit message (Expand)AuthorFilesLines
2021-07-25ash: speed up ${v//pattern/repl}Denys Vlasenko1-7/+10
2021-07-22ash: speed up ${v//pattern/repl} if !ASH_OPTIMIZE_FOR_SIZEDenys Vlasenko1-3/+27
2021-07-20cut: add toybox-compatible options -O OUTSEP, -D, -F LISTRob Landley2-97/+174
2021-07-14awk: whitespace and debugging tweaksDenys Vlasenko1-67/+66
2021-07-14vi: remove redundant assignmentDenys Vlasenko1-1/+0
2021-07-14awk: disallow break/continue outside of loopsDenys Vlasenko2-9/+6
2021-07-14awk: tighten parsing - disallow extra semicolonsDenys Vlasenko1-16/+24
2021-07-13vi: fix regex search compilation errorRon Yorston1-1/+1
2021-07-13vi: somewhat more readable code, no logic changesDenys Vlasenko1-8/+9
2021-07-13vi: allow delimiter in ':s' to be escapedRon Yorston1-2/+17
2021-07-13vi: allow regular expressions in ':s' commandsDenys Vlasenko1-15/+116
2021-07-13vi: improve handling of anchored searchesRon Yorston1-0/+2
2021-07-13vi: use basic regular expressions for searchRon Yorston1-2/+2
2021-07-13vi: allow 'gg' to specify a rangeRon Yorston1-1/+2
2021-07-12awk: in parsing, remove superfluous NEWLINE check; optimize builtin arg evalu...Denys Vlasenko1-5/+6
2021-07-12awk: fix printf "%-10c", 0Denys Vlasenko2-4/+13
2021-07-11awk: fix corner case in awk_printfDenys Vlasenko1-4/+4
2021-07-11tc: fix for parsing of "dev IFACE" and printing of "class list"Denys Vlasenko1-20/+22
2021-07-11awk: unbreak "cmd" | getlineDenys Vlasenko2-1/+7
2021-07-11awk: unbreak "printf('%c') can output NUL" testcaseDenys Vlasenko1-17/+26
2021-07-11awk: undo TI_PRINT, it introduced a bug (print with any redirect acting as pr...Denys Vlasenko2-3/+10
2021-07-11awk: rollback_token() + chain_group() == chain_until_rbrace()Denys Vlasenko1-2/+1
2021-07-04awk: fix printf buffer overflowDenys Vlasenko1-39/+55
2021-07-03awk: simplify tests for operation classDenys Vlasenko1-28/+36
2021-07-03awk: restore strdup elision optimization in assignmentDenys Vlasenko1-8/+17
2021-07-03awk: match(): code shrinkDenys Vlasenko1-13/+11
2021-07-03awk: rand(): 64-bit constants should be ULLDenys Vlasenko1-2/+2
2021-07-03awk: do not use a copy of g_progname for node->l.new_prognameDenys Vlasenko1-2/+2
2021-07-03awk: support %F %a %A in printfDenys Vlasenko1-1/+1
2021-07-03awk: open-code TS_OPTERM, no logic changesDenys Vlasenko1-16/+17
2021-07-03awk: tighten rules in action parsingDenys Vlasenko1-42/+66
2021-07-03awk: rename GRPSTART/END to L/RBRACE, no code changesDenys Vlasenko1-27/+33
2021-07-02awk: move match() code out-of-lineDenys Vlasenko1-17/+28
2021-07-02awk: use smaller regmatch_t arrays, they had 2 elements for no apparent reasonDenys Vlasenko1-3/+5
2021-07-02awk: fix detection of VAR=VAL argumentsDenys Vlasenko1-5/+4
2021-07-02awk: fix beavior of "exit" without parameterDenys Vlasenko2-18/+27
2021-07-02awk: rand() could return 1.0, fix this - should be in [0,1)Denys Vlasenko1-2/+13
2021-07-02awk: beautify builtins table, no code changesDenys Vlasenko1-12/+14
2021-07-02awk: enforce simple builtins' argument numberDenys Vlasenko1-17/+28
2021-07-02awk: make builtin definitions more understandable, no code changesDenys Vlasenko1-22/+49
2021-07-02awk: do not special-case "delete"Denys Vlasenko1-29/+27
2021-07-02awk: shuffle globals for smaller offsetsDenys Vlasenko1-12/+13
2021-07-02awk: use "static" tmpvars in main and exitDenys Vlasenko1-12/+5
2021-07-02awk: when parsing length(), simplify eating of LPARENDenys Vlasenko1-3/+4
2021-07-02awk: shuffle functions to reduce forward declarations, no code changesDenys Vlasenko1-98/+94
2021-07-01awk: use static tmpvars instead of nvalloc(1)ed onesDenys Vlasenko1-15/+34
2021-07-01awk: rename temp variables, no code changesDenys Vlasenko1-30/+46
2021-06-30awk: evaluate all, even superfluous function argsDenys Vlasenko2-8/+19
2021-06-30awk: rewrite "print" logic a bit to make it clearerDenys Vlasenko1-5/+4
2021-06-30awk: allow empty fuinctions with no arguments, disallow function redefinitionsDenys Vlasenko2-4/+17