summaryrefslogtreecommitdiff
path: root/miscutils (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * bc: add a palceholder comment for "void" returnDenys Vlasenko2019-01-041-11/+15
| * bc: remove extra div/0 test, remove test for string function parameterDenys Vlasenko2019-01-041-8/+7
| * bc: fix "...; return}" to work, disallow "return ()"Denys Vlasenko2019-01-031-8/+5
| * bc: make error line number also size_t, like everything elseDenys Vlasenko2019-01-021-6/+8
| * bc: speed up string printing, fix print ""Denys Vlasenko2019-01-021-44/+22
| * bc: upstream fixesDenys Vlasenko2019-01-011-83/+94
| * bc: in xc_read_line(), check ^C on NUL input bytes tooDenys Vlasenko2019-01-011-4/+6
| * bc: remove superfluous assigmentDenys Vlasenko2018-12-311-1/+2
| * bc: support ibase up to 36 (GNU compat)Denys Vlasenko2018-12-311-19/+31
| * bc: fold xc_lex_more_input() into peek_inbuf()Denys Vlasenko2018-12-311-22/+9
| * bc: tidying up, no logic changesDenys Vlasenko2018-12-301-43/+44
| * bc: simplify representation of 0.5 in sqrt()Denys Vlasenko2018-12-291-10/+15
| * bc: remove special-cased assignment to ibase, it works correctly with general...Denys Vlasenko2018-12-291-24/+19
| * bc: more fixes for unusual input basesDenys Vlasenko2018-12-291-6/+13
| * bc: fix handling of "digits" above 9Denys Vlasenko2018-12-291-19/+63
| * config: more tweaksDenys Vlasenko2018-12-281-1/+1
| * bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operationDenys Vlasenko2018-12-281-1/+1
| * bc: rename config optionsDenys Vlasenko2018-12-281-37/+26
| * config: update size informationDenys Vlasenko2018-12-2834-44/+44
| * bc: rename functions common to bc and dc as xc_FOO()Denys Vlasenko2018-12-271-408/+397
| * bc: G.prog.zero does not need initializing num[] vectorDenys Vlasenko2018-12-271-2/+2
| * randomconfig fixesDenys Vlasenko2018-12-271-1/+1
| * bc: use ALIGN1 where appropriateDenys Vlasenko2018-12-261-4/+4
| * bc: undo debugging change, add a small optimizationDenys Vlasenko2018-12-261-2/+2
| * bc: simple speedupsDenys Vlasenko2018-12-261-1/+28
| * bc: use '\0' insteads of 0xff (BC_PARSE_STREND) as name terminatorDenys Vlasenko2018-12-261-24/+10
| * bc: reduce indentation, no code changesDenys Vlasenko2018-12-261-824/+823
| * bc: fix "bc only" buildDenys Vlasenko2018-12-261-1/+1
| * bc: fix "dc only" buildDenys Vlasenko2018-12-261-1/+1
| * bc: comment out code which appears to be never reachedDenys Vlasenko2018-12-261-2/+3
| * bc: remove all logic for multi-line bufferingDenys Vlasenko2018-12-261-125/+19
| * bc: prepare for char-by-char input handlingDenys Vlasenko2018-12-261-233/+210
| * bc: fix handling of comment/string interactions while buffering inputDenys Vlasenko2018-12-261-38/+74
| * bc: fix interactive handling of comments in strings and quotes in commentsDenys Vlasenko2018-12-251-16/+20
| * bc: simplify input pointer manipulation while lexingDenys Vlasenko2018-12-251-60/+55
| * bc: fold struct BcLex into BcParseDenys Vlasenko2018-12-251-267/+262
| * bc: move BcLex::lex member to be the first in struct globalsDenys Vlasenko2018-12-251-65/+65
| * bc: rename some members and macros, no code changesDenys Vlasenko2018-12-251-129/+129
| * bc: shorten error messagesDenys Vlasenko2018-12-251-8/+8
| * bc: make it clear that the code is adaptedGavin Howard2018-12-251-2/+4
| * bc: stop passing a pointer to G.prs down the call chainDenys Vlasenko2018-12-251-327/+374
| * bc: make zbc_program_read() and zdc_program_execStr() use G.prsDenys Vlasenko2018-12-251-46/+41
| * bc: fix interactive read()Denys Vlasenko2018-12-251-25/+26
| * bc: add code to detect errors like "print 1 print 2"Denys Vlasenko2018-12-251-10/+39
| * bc: allow {break} and {continue} (allow RBRACE to terminate them)Denys Vlasenko2018-12-251-13/+5
| * bc: shrink parsing code a bit more, disallow "auto a b c" (without commas)Denys Vlasenko2018-12-251-24/+22
| * bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko2018-12-251-20/+32
| * bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko2018-12-251-5/+9
| * bc: simplify bc_parse_expr_empty_ok()Denys Vlasenko2018-12-251-16/+20
| * bc: BC_RESULT_ONE is bc-specificDenys Vlasenko2018-12-241-84/+84