1. 5ec4b49 bc: in bc_program_execStr(), push two variables into inner scope by Denys Vlasenko · 6 years ago
  2. 927a7d6 bc: in bc_program_exec(), push two variables into inner scope by Denys Vlasenko · 6 years ago
  3. 8fa1e8e bc: add accessors for G.prog.strs[idx], G.prog.fns[idx] by Denys Vlasenko · 6 years ago
  4. 0f37b32 bc: eliminate always the same params to bc_num_printBase() by Denys Vlasenko · 6 years ago
  5. ebc41c9 bc: remove redundant error checks in bc_parse_print() by Denys Vlasenko · 6 years ago
  6. 5f1b90b bc: stop propagating pointer to G.prog.nchars deep into printing functions by Denys Vlasenko · 6 years ago
  7. 2a8ad48 bc: do not pass line width in parameters, it's in globals by Denys Vlasenko · 6 years ago
  8. ac6ed11 bc: remove "ready for more input" message, GNU bc does not print that by Denys Vlasenko · 6 years ago
  9. 6e7c65f bc: trim banner, use empty interactive prompts (GNU bc compat) by Denys Vlasenko · 6 years ago
  10. d0bc5fd dc: fix "small dc" to have standard command line API by Denys Vlasenko · 6 years ago
  11. f522dd9 bc: replace G.eof with a special exit code of bc_vm_stdin() by Denys Vlasenko · 6 years ago
  12. 2d615fe bc: convert two macros to functions, unwing one complex max(a,min(b,c)) by Denys Vlasenko · 6 years ago
  13. 64074a1 bc: do not perform domr limit checks when they can't work (e.g. on 32-bit arches) by Denys Vlasenko · 6 years ago
  14. ffdcebd bc: pull temporary into a register by Denys Vlasenko · 6 years ago
  15. 18c6b54 bc: use more compact parsing data structures by Denys Vlasenko · 6 years ago
  16. b9c321d bc: use only G_interrupt as interrupt flag by Denys Vlasenko · 6 years ago
  17. c7a7ce0 bc: fix exit codes for FEATURE_CLEAN_UP=y by Denys Vlasenko · 6 years ago
  18. a133137 dc: fix testsuite by Denys Vlasenko · 6 years ago
  19. 6d0be10 bc: correctly parse dc options by Denys Vlasenko · 6 years ago
  20. 4c9455f dc: fix "dc does_not_exist" SEGVing by Denys Vlasenko · 6 years ago
  21. b23ac51 bc: code shrink - convert two macros to functions by Denys Vlasenko · 6 years ago
  22. d00d2f9 bc: make keyword POSIXness check more readable by Denys Vlasenko · 6 years ago
  23. b6f6086 bc: move a function to reduce forward declarations by Denys Vlasenko · 6 years ago
  24. e55a572 bc: small simplification in dc_lex_token() by Denys Vlasenko · 6 years ago
  25. 2fa11b6 bc: add comment about BC_NUM_DEF_SIZE by Denys Vlasenko · 6 years ago
  26. 1ff8862 bc: fix for prev commit by Denys Vlasenko · 6 years ago
  27. 4c30406 bc: do not needlessly use strcat by Denys Vlasenko · 6 years ago
  28. 23c2e9f bc: unbreak "BC only" and "DC only" configs by Denys Vlasenko · 6 years ago
  29. 9ca9ef2 dc: re-enable "tiny dc" implementation by Denys Vlasenko · 6 years ago
  30. a6f84e1 bc: reuse common string by Denys Vlasenko · 6 years ago
  31. 95f93bd bc: hook up line editing with history buffer by Denys Vlasenko · 6 years ago
  32. ed84935 bc: add preparatory indent block, no code changes by Denys Vlasenko · 6 years ago
  33. 1a6a482 bc: if ^C handling is not selected, there is no interactive mode by Denys Vlasenko · 6 years ago
  34. 54214c3 bc: fix "bc -v" printing version info twice, and not exiting by Denys Vlasenko · 6 years ago
  35. 1ff1c70 bc: make bc_vm_envArgs() NULL-terminate its argv, simplify bc_vm_envLen() by Denys Vlasenko · 6 years ago
  36. e873ff9 bc: if FEATURE_CLEAN_UP, clean up allocations on exits by Denys Vlasenko · 6 years ago
  37. 050b0fe bc: do not allow "()" as a valid expression by Denys Vlasenko · 6 years ago
  38. cca79a0 bc: reorder functions, delete forward declarations, no code changes - part 2 by Denys Vlasenko · 6 years ago
  39. b0e3761 bc: reorder functions, delete forward declarations, no code changes by Denys Vlasenko · 6 years ago
  40. aad652a bc: remove unused strings by Denys Vlasenko · 6 years ago
  41. 452df92 bc: trivial simplification in bc_parse_return() by Denys Vlasenko · 6 years ago
  42. 657d6bb bc: fix "warning: 's' may be used uninitialized in this function" by Denys Vlasenko · 6 years ago
  43. bcb62a7 bc: code shrink by Denys Vlasenko · 6 years ago
  44. 6543758 bc: code shrink by Denys Vlasenko · 6 years ago
  45. f381a88 bc: make division operation interruptible by Denys Vlasenko · 6 years ago
  46. b3cb901 bc: use unsigned division by 10 instead of signed by Denys Vlasenko · 6 years ago
  47. 06fa65b bc: move ^C check fro power calculation to multiplication by Denys Vlasenko · 6 years ago
  48. b692c2f bc: bc_num_k(): move carry,i,j,len to inner scope by Denys Vlasenko · 6 years ago
  49. 0d7e46b bc: tweak error messages by Denys Vlasenko · 6 years ago
  50. 0064679 bc: fix inverted POSIXness test, improve messages, commonalize message strings by Denys Vlasenko · 6 years ago
  51. 5318f81 bc: print error line numbers by Denys Vlasenko · 6 years ago
  52. 08c033c bc: optimize pushing zero bytes to vectors by Denys Vlasenko · 6 years ago
  53. 0409ad3 bc: restore printing of script name on errors by Denys Vlasenko · 6 years ago
  54. 0ad36c4 bc: do not check for errors when parsing/running internal library by Denys Vlasenko · 6 years ago
  55. 24fb2cd bc: shrink error handling code by enabling tail-call optimization by Denys Vlasenko · 6 years ago
  56. f359e00 bc: make 2^1000000 interruptible faster by Denys Vlasenko · 6 years ago
  57. 68cc0a6 bc: remove tabs from internal library by Denys Vlasenko · 6 years ago
  58. 51fb8aa bc: store library in ASCII, shrink keyword parsing code by Denys Vlasenko · 6 years ago
  59. cb9a99f bc: drop bc_map_init() macro by Denys Vlasenko · 6 years ago
  60. 7d62801 bc: create a few common functions by Denys Vlasenko · 6 years ago
  61. d5f7703 bc: rewrite "BOOL * EXPR" idiom as if() statement by Denys Vlasenko · 6 years ago
  62. 17c5472 bc: switch to SA_RESTART signal handling by Denys Vlasenko · 6 years ago
  63. d70d4a0 bc: get rid of G.tty and G.flags by Denys Vlasenko · 6 years ago
  64. 9b70f19 bc: convert all status codes, remove bc_err_msgs[], bc_vm_error(), bc_vm_posixError() by Denys Vlasenko · 6 years ago
  65. 60cf747 bc: convert all non-POSIX BC_STATUS_foo codes by Denys Vlasenko · 6 years ago
  66. d38af48 bc: convert BC_STATUS_EXEC_SIGNAL - its message string was never used by Denys Vlasenko · 6 years ago
  67. abbc433 bc: convert BC_STATUS_PARSE_NO_AUTO by Denys Vlasenko · 6 years ago
  68. 04a1c76 bc: convert BC_STATUS_EXEC_MISMATCHED_PARAMS and BC_STATUS_EXEC_UNDEFINED_FUNC by Denys Vlasenko · 6 years ago
  69. a02f844 bc: BC_STATUS_VEC_ITEM_EXISTS is not a real error code, its message was never used by Denys Vlasenko · 6 years ago
  70. bc5ce66 bc: simplify bc_lex_comment() by Denys Vlasenko · 6 years ago
  71. c1c2470 bc: handle BIN_FILE and LEX_BAD_CHAR errors at the site of detection by Denys Vlasenko · 6 years ago
  72. d4744ad bc: eliminate BC_STATUS_INPUT_EOF by Denys Vlasenko · 6 years ago
  73. cfdc133 bc: handle "limits" and "quit" immediately at parse time by Denys Vlasenko · 6 years ago
  74. 01cabaf bc": drop unused error codes and strings by Denys Vlasenko · 6 years ago
  75. b8860a8 bc: remove "error ids": serve no useful purpose, error message should be explanatory enough by Denys Vlasenko · 6 years ago
  76. 1f67e93 bc: reduce forward declarations by Denys Vlasenko · 6 years ago
  77. d9d6655 bc: use smaller datatypes for limits, match GNU bc 'limits' output by Denys Vlasenko · 6 years ago
  78. 416ce76 bc: better handle optional args of bc_program_pushVar() by Denys Vlasenko · 6 years ago
  79. 9721f6c bc: tweak help text by Denys Vlasenko · 6 years ago
  80. a0c421c bc: simplify bc_vm_stdin() by Denys Vlasenko · 6 years ago
  81. 71e1fc6 bc: only check for ^C in bc_program_exec() main loop by Denys Vlasenko · 6 years ago
  82. df51539 bc: simpler calling convention for bc_read_file(), bc_program_search() by Denys Vlasenko · 6 years ago
  83. e3b4f23 bc: bc_num_ulong2num(), bc_program_pushGlobal(), bc_program_stackLen() never fail by Denys Vlasenko · 6 years ago
  84. a1d3ca2 bc: stop passing around pointers to G.prog, they are all constant by Denys Vlasenko · 6 years ago
  85. f6c1da5 bc: select parse_init() and parse_expr() using IS_BC, not function pointers by Denys Vlasenko · 6 years ago
  86. 785e4b3 bc: propagate fixed arguments into callees by Denys Vlasenko · 6 years ago
  87. ab3c568 bc: simplify ^C handling by Denys Vlasenko · 6 years ago
  88. 6d9146a bc: convert to "G trick" - this returns bc to zero bss increase by Denys Vlasenko · 6 years ago
  89. 5a9fef5 bc: simplify, and restore ^C, fix ^D handling by Denys Vlasenko · 6 years ago
  90. 00d7779 bc: simplify, stop testing for IO errors on every output by Denys Vlasenko · 6 years ago
  91. ef869ec bc: fix warnings, initial cleanups by Denys Vlasenko · 6 years ago
  92. 01055ba bc: new applet, throws warning by Gavin Howard · 6 years ago
  93. c339c7f libarchive: add a function to unpack embedded data by Ron Yorston · 6 years ago
  94. ca2f831 hexedit: fixes for redraw and down movement causing SEGV on attempt to access by Denys Vlasenko · 6 years ago
  95. 43b17b1 restore documentation on the build config language by Kartik Agaram · 7 years ago
  96. 058a153 less: fix fallout from "use common routine to set raw termios" by Denys Vlasenko · 7 years ago
  97. 50aea27 less: remove unnecessary message by Denys Vlasenko · 7 years ago
  98. 3694150 less: implement -F by Aaro Koskinen · 7 years ago
  99. 38ccd6a bzip2: fix two crashes on corrupted archives by Denys Vlasenko · 7 years ago
  100. 7bcde5f libbb.h: always include sys/resource.h by Denys Vlasenko · 7 years ago