- 7f2d59c bc: style edit, no code changes by Denys Vlasenko · 6 years ago
- 3f940c9 bc: shrink bc_program_index() by Denys Vlasenko · 6 years ago
- 55f3cab bc: fix "echo -n '#foo' | bc" not eating last 'o' by Denys Vlasenko · 6 years ago
- a199cc9 bc: shrink zdc_parse_expr() by Denys Vlasenko · 6 years ago
- 07597cd bc: optimize zbc_lex_string() by Denys Vlasenko · 6 years ago
- ef271da bc: shrink zdc_lex_string() by Denys Vlasenko · 6 years ago
- d4258dd bc: another for() loop simplified by Denys Vlasenko · 6 years ago
- 5c0c5ab bc: simplify another for() loop by Denys Vlasenko · 6 years ago
- 6b0fbd1 bc: rewrite more for() loops by Denys Vlasenko · 6 years ago
- 71c82d1 bc: rewrite another for() loop by Denys Vlasenko · 6 years ago
- e2e6ffd bc: replace signed division / 10 by unsigned by Denys Vlasenko · 6 years ago
- 4113e1f bc: rewrite bc_num_compare() to be readable by Denys Vlasenko · 6 years ago
- 57734c9 bc: fold zbc_num_stream() into its single caller by Denys Vlasenko · 6 years ago
- f6e3f85 bc: get rid of BcNum BcProgram::ib,hexb by Denys Vlasenko · 6 years ago
- 0f31a5c bc: fixes to bugs found while testing 64-bit build by Denys Vlasenko · 6 years ago
- f4f1072 bc: fixed from 64-bit compile by Denys Vlasenko · 6 years ago
- 4b72aeb bc: remove "error after expression parsing" check by Denys Vlasenko · 6 years ago
- b44a7f1 bc: tighten up input NUL handling by Denys Vlasenko · 6 years ago
- e42cc19 bc: simplify zdc_parse_string() by Denys Vlasenko · 6 years ago
- 59d4ce9 bc: use common strings by Denys Vlasenko · 6 years ago
- ec60318 bc: tidy up "z-function" macro machinery by Denys Vlasenko · 6 years ago
- e4ba4c4 bc: parse file arguments piecemeal (do not read entire file) by Denys Vlasenko · 6 years ago
- c5774a3 bc: move fflush to the _actual_ execution loop by Denys Vlasenko · 6 years ago
- 51b22b1 bc: fix typo: defone -> define by Denys Vlasenko · 6 years ago
- 94f72a3 bc: factor out common code by Denys Vlasenko · 6 years ago
- 5ebd2a6 bc: remove use of "BcInstPtr ip" object from loop parsing by Denys Vlasenko · 6 years ago
- 266aa00 bc: store only index in p->exits, it's the only thing used there by Denys Vlasenko · 6 years ago
- 8e7686e bc: p->exits.func is never zero, do not check for that by Denys Vlasenko · 6 years ago
- de24e9d bc: remove redundant JUMP generation when parsing 'while' by Denys Vlasenko · 6 years ago
- 06ade77 bc: simplify use of "ip" in loop parsing functions by Denys Vlasenko · 6 years ago
- 146a79d bc: shring bc_lib[] by Denys Vlasenko · 6 years ago
- 1585083 bc: shrink zbc_parse_if() a bit more by Denys Vlasenko · 6 years ago
- 6b5b46f bc: stop using p->exits when parsing if() by Denys Vlasenko · 6 years ago
- 7415633 bc: preparation to stop using p->exits when parsing if() by Denys Vlasenko · 6 years ago
- 5d18f6b bc: fix "print 1,2,3" parsing by Denys Vlasenko · 6 years ago
- cb18b54 bc: disallow empty statement as function body by Denys Vlasenko · 6 years ago
- 2e8be02 bc: allow only one <newline> between if() and stmt by Denys Vlasenko · 6 years ago
- e6c40c4 bc: simplify bc_parse_pushName(), do not free name in it - avoids one strdup by Denys Vlasenko · 6 years ago
- 563d93c bc: simplify zbc_parse_break_or_continue(), logic is the same by Denys Vlasenko · 6 years ago
- a50576a bc: fold zbc_parse_else() into its only caller by Denys Vlasenko · 6 years ago
- 6d29879 bc: fold bc_parse_noElse() into its only caller by Denys Vlasenko · 6 years ago
- 9dc5d08 bc: delete unused (write-only) BcParse::nbraces member by Denys Vlasenko · 6 years ago
- 202dd19 bc: fixes for multi-line if/while/for by Denys Vlasenko · 6 years ago
- e9519e4 bc: fix handling of 'return' not in functions, and 'define f()<newline>{...}' by Denys Vlasenko · 6 years ago
- d1d29b4 bc: partially rewrite parser, tests pass, ^C might be broken now by Denys Vlasenko · 6 years ago
- 99b3762 bc: lexer debugging, added some failing test cases by Denys Vlasenko · 6 years ago
- fd51e0c bc: simplify BC_INST_JUMP[_ZERO] handling by Denys Vlasenko · 6 years ago
- 7db3843 bc: rewrite "block flag stack" using simple realloc'ed byte array by Denys Vlasenko · 6 years ago
- f10f17f bc: drop zbc_parse_endBody() bool parameter, move its code to caller which uses it by Denys Vlasenko · 6 years ago
- 0154d78 bc: shorten one message, make defines more readable by Denys Vlasenko · 6 years ago
- 7b1df3d bc: pull zbc_lex_next() call out of zbc_parse_operator() into one caller that uses it by Denys Vlasenko · 6 years ago
- 17df882 bx: add more debug scaffolding by Denys Vlasenko · 6 years ago
- 2ea53a4 bc: convert macro bc_parse_push() to function, add debug infrastructure by Denys Vlasenko · 6 years ago
- f86e960 bc: rename zbc_parse_text() to ..._init(), reuse existing code for library parsing by Denys Vlasenko · 6 years ago
- 0a23814 bc: compress two constant arguments of bc_lex_assign() to one by Denys Vlasenko · 6 years ago
- 8226912 bc: remove stale comment, empty lines, regularize comment style by Denys Vlasenko · 6 years ago
- 87b49be bc: tweak bc_num_parseDecimal() for readability, logic is not changed by Denys Vlasenko · 6 years ago
- 240d7ee bc: shrink s() in library again by Denys Vlasenko · 6 years ago
- fc9d269 bc: yet another library shrink by Denys Vlasenko · 6 years ago
- c06537d bc: shrink internal library yet more by Denys Vlasenko · 6 years ago
- 203210e bc: shrink internal library more by Denys Vlasenko · 6 years ago
- 3ac0c21 bc: shrink internal library by Denys Vlasenko · 6 years ago
- 57b6918 bc: group ENABLE_BC code a bit better, no logic changes by Denys Vlasenko · 6 years ago
- 5f263f4 bc: fix "dc only" bug by Denys Vlasenko · 6 years ago
- e755e30 bc: unbreak "only bc" and "only dc" configs by Denys Vlasenko · 6 years ago
- 89198a9 bc: simplify bc_lex_whitespace() by Denys Vlasenko · 6 years ago
- bbcecc4 bc: G.sbgn and G.send are unused, remove them by Denys Vlasenko · 6 years ago
- 0fe270e bc: simplify filename saving in zbc_vm_file() by Denys Vlasenko · 6 years ago
- 915c72b bc: do not append duplicate NUL, reduce indentation in bc_read_line() by Denys Vlasenko · 6 years ago
- 82ea67f bc: change bc_read_line() and zbc_vm_stdin() to avoid double buffers by Denys Vlasenko · 6 years ago
- b7e61e3 bc: further simplification in zbc_vm_stdin() by Denys Vlasenko · 6 years ago
- 818b602 bc: fix another thinko by Denys Vlasenko · 6 years ago
- 335b4ef bc: fix a thinko: dc uses [] string delimiters, bot bc! by Denys Vlasenko · 6 years ago
- 766f672 bc: fix comment handling by Denys Vlasenko · 6 years ago
- 7dc0a51 bc: further zbc_vm_stdin() optimizations by Denys Vlasenko · 6 years ago
- 40534bb bc: shrink zbc_vm_stdin() by Denys Vlasenko · 6 years ago
- 89e785a bc: trim config help text, add a few comments, no code changes by Denys Vlasenko · 6 years ago
- 9811ad0 bc: unbreak CONFIG_FEATURE_BC_SIGNALS=y config by Denys Vlasenko · 6 years ago
- c2265f5 bc: remove lexer function pointer by Denys Vlasenko · 6 years ago
- c0ef23c bc: remove parse function pointer by Denys Vlasenko · 6 years ago
- 19f1107 bc: convert two more functions to "z" logic by Denys Vlasenko · 6 years ago
- 8a89247 bc: remove BC_STATUS_EOF (again), the condition is detectable as len==0 by Denys Vlasenko · 6 years ago
- d8078a7 dc: fix EOF handling in case of last line being incomplete by Denys Vlasenko · 6 years ago
- d6ad366 bc: further conversions to "z" logic by Denys Vlasenko · 6 years ago
- c2da68e bc: optimize bc_parse_pushIndex() by Denys Vlasenko · 6 years ago
- 26819db bc: convert even more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
- ae0faf9 bc: convert even more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
- 8cd468f bc: convert more of lexer functions to "z" convention by Denys Vlasenko · 6 years ago
- 9a34e89 bc: partially convert lexer functions to "z" convention by Denys Vlasenko · 6 years ago
- 251fbb5 bc: code shrink in bc_num_cmp() by Denys Vlasenko · 6 years ago
- 16494f5 bc: simplify zbc_program_logical() by Denys Vlasenko · 6 years ago
- 69171dc bc: simplify nested read() check by Denys Vlasenko · 6 years ago
- 12b9eaf bc: in non-interactive config, POSIX error functions never return nonzero by Denys Vlasenko · 6 years ago
- f0f069b bc: use common_parse_init() in bc_vm_init() by Denys Vlasenko · 6 years ago
- 4dd3652 bc: fix EOF handling in bc_program_read() by Denys Vlasenko · 6 years ago
- 2c6f563 bc: tweak comment by Denys Vlasenko · 6 years ago
- c008a73 bc: convert bc_program_asciify to "z" function by Denys Vlasenko · 6 years ago
- 9f657e0 bc: shrink bc_program_printString by Denys Vlasenko · 6 years ago
- 259137d bc: convert zbc_program_op to "z" function, fix a thinko in prev commits by Denys Vlasenko · 6 years ago
- 728e7c9 bc: convert bc_program_logical to "z" function by Denys Vlasenko · 6 years ago