aboutsummaryrefslogtreecommitdiff
path: root/init (unfollow)
Commit message (Expand)AuthorFilesLines
2019-02-14bc: fix "...; return}" to work, disallow "return ()"Denys Vlasenko3-11/+11
2019-02-14bc: make error line number also size_t, like everything elseDenys Vlasenko1-6/+8
2019-02-14bc: generate large bc tests on the fly, -5 mbytes in the git treeDenys Vlasenko2-11/+43
2019-02-14bc: speed up string printing, fix print ""Denys Vlasenko2-44/+28
2019-02-14bc: upstream fixesDenys Vlasenko2-83/+110
2019-02-14bc: in xc_read_line(), check ^C on NUL input bytes tooDenys Vlasenko1-4/+6
2019-02-14bc: remove superfluous assigmentDenys Vlasenko1-1/+2
2019-02-14bc: support ibase up to 36 (GNU compat)Denys Vlasenko2-19/+36
2019-02-14bc: fold xc_lex_more_input() into peek_inbuf()Denys Vlasenko1-22/+9
2018-12-30Bump version to 1.30.01_30_0Denys Vlasenko1-1/+1
2018-12-30bc: tidying up, no logic changesDenys Vlasenko1-43/+44
2018-12-29bc: simplify representation of 0.5 in sqrt()Denys Vlasenko1-10/+15
2018-12-29bc: remove special-cased assignment to ibase, it works correctly with general...Denys Vlasenko1-24/+19
2018-12-29bc: more fixes for unusual input basesDenys Vlasenko3-6/+81
2018-12-29bc: fix handling of "digits" above 9Denys Vlasenko3-19/+103
2018-12-28config: dpkg_deb should be dpkg-debDenys Vlasenko1-1/+1
2018-12-28config: more tweaksDenys Vlasenko6-12/+7
2018-12-28bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operationDenys Vlasenko1-1/+1
2018-12-28config: add size information for three more appletsDenys Vlasenko4-5/+5
2018-12-28bc: rename config optionsDenys Vlasenko4-39/+33
2018-12-28config: add size information for udhcpcDenys Vlasenko2-5/+5
2018-12-28config: update size informationDenys Vlasenko262-313/+321
2018-12-27bc: rename functions common to bc and dc as xc_FOO()Denys Vlasenko1-408/+397
2018-12-27bc: G.prog.zero does not need initializing num[] vectorDenys Vlasenko1-2/+2
2018-12-27randomconfig fixesDenys Vlasenko6-12/+20
2018-12-26bc: use ALIGN1 where appropriateDenys Vlasenko1-4/+4
2018-12-26bc: undo debugging change, add a small optimizationDenys Vlasenko1-2/+2
2018-12-26bc: simple speedupsDenys Vlasenko1-1/+28
2018-12-26bc: use '\0' insteads of 0xff (BC_PARSE_STREND) as name terminatorDenys Vlasenko1-24/+10
2018-12-26bc: reduce indentation, no code changesDenys Vlasenko1-824/+823
2018-12-26bc: fix "bc only" buildDenys Vlasenko1-1/+1
2018-12-26bc: fix "dc only" buildDenys Vlasenko1-1/+1
2018-12-26bc: comment out code which appears to be never reachedDenys Vlasenko1-2/+3
2018-12-26bc: remove all logic for multi-line bufferingDenys Vlasenko1-125/+19
2018-12-26bc: prepare for char-by-char input handlingDenys Vlasenko2-237/+214
2018-12-26bc: fix handling of comment/string interactions while buffering inputDenys Vlasenko1-38/+74
2018-12-25bc: fix interactive handling of comments in strings and quotes in commentsDenys Vlasenko2-18/+34
2018-12-25bc: simplify input pointer manipulation while lexingDenys Vlasenko1-60/+55
2018-12-25bc: fold struct BcLex into BcParseDenys Vlasenko1-267/+262
2018-12-25bc: move BcLex::lex member to be the first in struct globalsDenys Vlasenko1-65/+65
2018-12-25bc: rename some members and macros, no code changesDenys Vlasenko1-129/+129
2018-12-25bc: shorten error messagesDenys Vlasenko1-8/+8
2018-12-25bc: make it clear that the code is adaptedGavin Howard1-2/+4
2018-12-25dc: add two testsDenys Vlasenko1-0/+10
2018-12-25bc: stop passing a pointer to G.prs down the call chainDenys Vlasenko1-327/+374
2018-12-25bc: make zbc_program_read() and zdc_program_execStr() use G.prsDenys Vlasenko1-46/+41
2018-12-25bc: fix interactive read()Denys Vlasenko1-25/+26
2018-12-25bc: add code to detect errors like "print 1 print 2"Denys Vlasenko1-10/+39
2018-12-25bc: allow {break} and {continue} (allow RBRACE to terminate them)Denys Vlasenko2-14/+11
2018-12-25bc: shrink parsing code a bit more, disallow "auto a b c" (without commas)Denys Vlasenko1-24/+22