oweals/busybox.git
2018-12-30 Denys VlasenkoBump version to 1.30.0 1_30_0
2018-12-30 Denys Vlasenkobc: tidying up, no logic changes
2018-12-29 Denys Vlasenkobc: simplify representation of 0.5 in sqrt()
2018-12-29 Denys Vlasenkobc: remove special-cased assignment to ibase, it works...
2018-12-29 Denys Vlasenkobc: more fixes for unusual input bases
2018-12-29 Denys Vlasenkobc: fix handling of "digits" above 9
2018-12-28 Denys Vlasenkoconfig: dpkg_deb should be dpkg-deb
2018-12-28 Denys Vlasenkoconfig: more tweaks
2018-12-28 Denys Vlasenkobc: bc enables FEATURE_DC_BIG, for correct dc testsuite...
2018-12-28 Denys Vlasenkoconfig: add size information for three more applets
2018-12-28 Denys Vlasenkobc: rename config options
2018-12-28 Denys Vlasenkoconfig: add size information for udhcpc
2018-12-28 Denys Vlasenkoconfig: update size information
2018-12-27 Denys Vlasenkobc: rename functions common to bc and dc as xc_FOO()
2018-12-27 Denys Vlasenkobc: G.prog.zero does not need initializing num[] vector
2018-12-27 Denys Vlasenkorandomconfig fixes
2018-12-26 Denys Vlasenkobc: use ALIGN1 where appropriate
2018-12-26 Denys Vlasenkobc: undo debugging change, add a small optimization
2018-12-26 Denys Vlasenkobc: simple speedups
2018-12-26 Denys Vlasenkobc: use '\0' insteads of 0xff (BC_PARSE_STREND) as...
2018-12-26 Denys Vlasenkobc: reduce indentation, no code changes
2018-12-26 Denys Vlasenkobc: fix "bc only" build
2018-12-26 Denys Vlasenkobc: fix "dc only" build
2018-12-26 Denys Vlasenkobc: comment out code which appears to be never reached
2018-12-26 Denys Vlasenkobc: remove all logic for multi-line buffering
2018-12-26 Denys Vlasenkobc: prepare for char-by-char input handling
2018-12-26 Denys Vlasenkobc: fix handling of comment/string interactions while...
2018-12-25 Denys Vlasenkobc: fix interactive handling of comments in strings...
2018-12-25 Denys Vlasenkobc: simplify input pointer manipulation while lexing
2018-12-25 Denys Vlasenkobc: fold struct BcLex into BcParse
2018-12-25 Denys Vlasenkobc: move BcLex::lex member to be the first in struct...
2018-12-25 Denys Vlasenkobc: rename some members and macros, no code changes
2018-12-25 Denys Vlasenkobc: shorten error messages
2018-12-25 Gavin Howardbc: make it clear that the code is adapted
2018-12-25 Denys Vlasenkodc: add two tests
2018-12-25 Denys Vlasenkobc: stop passing a pointer to G.prs down the call chain
2018-12-25 Denys Vlasenkobc: make zbc_program_read() and zdc_program_execStr...
2018-12-25 Denys Vlasenkobc: fix interactive read()
2018-12-25 Denys Vlasenkobc: add code to detect errors like "print 1 print 2"
2018-12-25 Denys Vlasenkobc: allow {break} and {continue} (allow RBRACE to termi...
2018-12-25 Denys Vlasenkobc: shrink parsing code a bit more, disallow "auto...
2018-12-25 Denys Vlasenkobc: simplify bc_parse_expr_empty_ok()
2018-12-25 Denys Vlasenkobc: simplify bc_parse_expr_empty_ok()
2018-12-25 Denys Vlasenkobc: simplify bc_parse_expr_empty_ok()
2018-12-24 Denys Vlasenkobc: BC_RESULT_ONE is bc-specific
2018-12-24 Denys Vlasenkobc: partially deinline BC_PARSE_LEAF() macro
2018-12-24 Denys Vlasenkobc: rename lexer variables, use smallints where appropriate
2018-12-24 Denys Vlasenkobc: fix "bc -s" only warning on "define f()<newline...
2018-12-24 Denys Vlasenkobc: POSIX error/warn functions can be 'z' functions too
2018-12-24 Denys Vlasenkobc: remove unnecessary NULL initializers
2018-12-24 Denys Vlasenkobc: move relational LEXs before math LEXs - shorten...
2018-12-24 Denys Vlasenkobc: offset dc_LEX_to_INST[] start
2018-12-24 Denys Vlasenkobc: rename BC_LEX_NLINE/WHITESPACE/STR/NAME/NUMBER...
2018-12-24 Denys Vlasenkobc: separate many bc and dc LEX constants
2018-12-24 Denys Vlasenkobc: rename several BC_LEX_OPs to XC_LEX_OPs.
2018-12-24 Denys Vlasenkobc: move BC_LEX_OP_INC/DEC to the end of operation...
2018-12-24 Denys Vlasenkobc: rename BC_LEXs to XC_LEXs for common constants...
2018-12-24 Denys Vlasenkobc: move functions/macros around, no code changes
2018-12-24 Denys Vlasenkobc: rename common INST constants to XC_, dc-specific...
2018-12-24 Denys Vlasenkodc: without -x, do not parse extended regs: 's p' means...
2018-12-24 Denys Vlasenkobc: fix incorrect bit in BC_PARSE_EXPRS_BITS: 'limits...
2018-12-23 Denys Vlasenkobc: for "dc only" remove handling of LAST, move OBASE...
2018-12-22 Denys Vlasenkobc: fix empty lines in dc generating "bad token" message
2018-12-22 Denys Vlasenkobc: shrink modular exponentiation code
2018-12-22 Denys Vlasenkobc: do not yet allow 2^2.1
2018-12-22 Denys Vlasenkobc: avoid having to twiddle b->neg in zbc_num_p()
2018-12-22 Denys Vlasenkobc: do not disallow powers to N.0000 degree - it's...
2018-12-22 Denys Vlasenkobc: shrink zbc_num_ulong()
2018-12-22 Denys Vlasenkobc: make long-running dc drop data it does not need...
2018-12-22 Denys Vlasenkobc: unbreak "z function" macro machinery
2018-12-22 Denys Vlasenkodc: unbreak interactive mode - was trying to get next...
2018-12-22 Denys Vlasenkobc: move zbc_lex_next() out of zdc_parse_string() and...
2018-12-22 Denys Vlasenkobc: shorten sanity-check code
2018-12-22 Denys Vlasenkobc: fold single-callsite functions into callers, common...
2018-12-22 Denys Vlasenkobc: zcommon_parse_expr() has only one user, fold it in
2018-12-22 Denys Vlasenkobc: zcommon_parse_expr() lost its flags argument
2018-12-22 Denys Vlasenkobc: stop using BC_PARSE_NOCALL in dc code
2018-12-22 Denys Vlasenkobc: unbreak read(), remove checks for nested read()
2018-12-21 Denys Vlasenkobc: code shrink
2018-12-21 Denys Vlasenkobc: rename BcInstPtr::idx and ::len
2018-12-21 Denys Vlasenkobc: remove unnecessary initializations
2018-12-21 Denys Vlasenkobc: use non-allocated BcNum's where appropriate
2018-12-21 Denys Vlasenkobc: optimize bc_vec_push() usage
2018-12-21 Denys Vlasenkobc: fix for() to not leave data on stack
2018-12-21 Denys Vlasenkobc: fix infinite state growth for "yes 1 | bc" case
2018-12-20 Denys Vlasenkobc: fix comment
2018-12-20 Denys Vlasenkobc: for(;;) fix from upstream
2018-12-20 Denys Vlasenkobc: shrink bc_program_add_fn()
2018-12-20 Denys Vlasenkobc: "dc only" config does not need G.prog.fn_map
2018-12-20 Denys Vlasenkobc: fix keyword matching to not think "ifz" is the...
2018-12-20 Denys Vlasenkobc: shrink "dc only" code by dropping unused structure...
2018-12-19 Denys Vlasenkobc: shorten bc_program_addFunc()
2018-12-19 Denys Vlasenkobc: fix "dc only" and "bc only" configs
2018-12-19 Denys Vlasenkobc: rename dc-specific functions, simplify zdc_program_...
2018-12-19 Denys Vlasenkobc: rename zbc_parse_string->bc_parse_pushSTR, do not...
2018-12-19 Denys Vlasenkobc: avoid bc_vec_item() calls in bc_vm_run()
2018-12-19 Denys Vlasenkobc: avoid bc_vec_item() calls in bc_array_copy()
2018-12-19 Denys Vlasenkobc: avoid successive bc_vec_item(&func->autos, i)
2018-12-19 Denys Vlasenkobc: remove unnecessary union use
2018-12-19 Denys Vlasenkobc: "unsigned_n > 0" is shorter code than "unsigned_n...
next