1. c396fe6 lineedit: small fixes by Denys Vlasenko · 16 years ago
  2. 020f406 line editing: add an option to emit ESC [ 6 n and use results by Denys Vlasenko · 16 years ago
  3. c15f40c lineedit: use read_key to recognize ESC sequence. by Denys Vlasenko · 16 years ago
  4. 5e34ff2 *: mass renaming of USE_XXXX to IF_XXXX by Denis Vlasenko · 16 years ago
  5. c0ea82a libbb: revent previous version of "concurrent history updating" by Denis Vlasenko · 16 years ago
  6. 57abf9e libbb: make history saving/loading concurrent-safe by Denis Vlasenko · 16 years ago
  7. 202ac50 *: code shrink by adding a wrapper around very common tcsetattr(0, TCSANOW, xx) op by Denis Vlasenko · 16 years ago
  8. 3c385cd lineedit: fix bug 5824: Since version 23530 with lineedit.c, by Denis Vlasenko · 16 years ago
  9. 682ad30 lineedit: fix problems with empty commands in history by Denis Vlasenko · 16 years ago
  10. f31c3b6 linedit: fix use-after-free by Denis Vlasenko · 16 years ago
  11. 41660c5 another overlapping_strcpy by Denis Vlasenko · 16 years ago
  12. 0f293b9 fix all cases of strcpy on overlapping strings. by Denis Vlasenko · 16 years ago
  13. 5415c85 libbb: [x]fopen_for_{read,write} introduced and used. (by Valdimir) by Denis Vlasenko · 16 years ago
  14. deeed59 libbb: introduce and use xrealloc_vector by Denis Vlasenko · 16 years ago
  15. 78ff819 lineedit: document prompt handling by Denis Vlasenko · 16 years ago
  16. defc1ea *: introduce and use FAST_FUNC: regparm on i386, otherwise no-on by Denis Vlasenko · 16 years ago
  17. b267ed9 lineedit: correctly handle prompt longer than screen width. closes bug 3414 by Denis Vlasenko · 17 years ago
  18. 5599502 more -Wall warning fixes. -Wall is enabled now. by Denis Vlasenko · 17 years ago
  19. 6b06cb8 more of -Wall fixes from Cristian Ionescu-Idbohrn. Some are fixing real bugs. by Denis Vlasenko · 17 years ago
  20. 77ad97f more -Wall warning fixes from Cristian Ionescu-Idbohrn. by Denis Vlasenko · 17 years ago
  21. 2c84495 lineedit: hack for making it sort-of-work even if term width is wrong by Denis Vlasenko · 17 years ago
  22. b520271 lineedit: filename completion on symlinks-to-dirs should add / too by Denis Vlasenko · 17 years ago
  23. 5d89fba *: remove remaining instances of ".data" hack by Denis Vlasenko · 17 years ago
  24. 8ee649a *: more uniform naming: s/xmalloc_getline/xmalloc_fgetline/ by Denis Vlasenko · 17 years ago
  25. 08ec67b patch: add support for -R. ~ +110 byte. By Pascal Bellard <pascal.bellard AT ads-lu.com> by Denis Vlasenko · 17 years ago
  26. 85c2471 *: fix fallout from -Wunused-parameter by Denis Vlasenko · 17 years ago
  27. fb29038 libbb: inntroduce and use bb_pstrcmp() and qsort_string_vector() by Denis Vlasenko · 17 years ago
  28. 574f2f4 *: add optimization barrier to all "G trick" locations by Denis Vlasenko · 17 years ago
  29. 6f1713f *: intrduce and use safe_gethostname. By Tito <farmatito AT tiscali.it> by Denis Vlasenko · 17 years ago
  30. e376d45 libbb: introduce and use nonblock_safe_read(). Yay! by Denis Vlasenko · 17 years ago
  31. 6f04391 lineedit: tiny shrink by Denis Vlasenko · 17 years ago
  32. 39487e2 libbb: filename completion should match dangling symlinks too by Denis Vlasenko · 17 years ago
  33. 80667e3 msh: fix Ctrl-C handling with line editing by Denis Vlasenko · 17 years ago
  34. 518d8dd eliminated CONFIG_FEATURE_EDITING_FANCY_KEYS. the size savings by Paul Fox · 17 years ago
  35. 84bbac5 enable use of ^V prefix to allow forced insertion of any character. in by Paul Fox · 17 years ago
  36. ee8e3ee allow 8-bit characters by Paul Fox · 17 years ago
  37. 6b40443 ps: fix build breakage from vda's recent commit *: whitespace fixes by Denis Vlasenko · 17 years ago
  38. f7be20e nameif: extended matching (Nico Erfurth <masta@perlgolf.de>) *: whitespace fixes by Denis Vlasenko · 17 years ago
  39. 9cb220b lineedit: don't violate API if we do simple fgets by Denis Vlasenko · 17 years ago
  40. 7221c8c lineedit: reduce stack usage by Denis Vlasenko · 17 years ago
  41. 6672c8e test: stop using lots of bss. by Denis Vlasenko · 17 years ago
  42. 73cb1fd lineedit: stop using both data/bss and tons of stack. by Denis Vlasenko · 17 years ago
  43. 037576d read_line_input: fix it to not do any fancy editing if echoing is disabled. by Denis Vlasenko · 17 years ago
  44. f74194e xatonum.h: add comment by Denis Vlasenko · 17 years ago
  45. feb7ae7 printf("%s\n") -> puts() by Denis Vlasenko · 17 years ago
  46. e918e15 remove stray semicolon by Denis Vlasenko · 17 years ago
  47. 4daad90 introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). by Denis Vlasenko · 17 years ago
  48. 86b29ea lineedit: plug memory leak by Denis Vlasenko · 17 years ago
  49. 6a5377a documentation bits in comments, no code changes by Denis Vlasenko · 17 years ago
  50. dc757aa introduce and use bb_basename() by Denis Vlasenko · 17 years ago
  51. e8a0788 moved biggest stack buffers to malloc space, or made their size configurable by Denis Vlasenko · 18 years ago
  52. 9a7d38f delete tons of extra #includes by Denis Vlasenko · 18 years ago
  53. b6adbf1 usage.c: remove reference to busybox.h by Denis Vlasenko · 18 years ago
  54. 0922192 lineedit: state->hist_file doesn't exist if !FEATURE_EDITING_SAVEHISTORY, by Denis Vlasenko · 18 years ago
  55. 5f9468e lineedit: nuke two unused variables and code which sets them by Denis Vlasenko · 18 years ago
  56. bf3561f lineedit: do not try to open NULL history file by Denis Vlasenko · 18 years ago
  57. 6b343dd fix inadvertently leaked PWD_BUFFER_SIZE by Denis Vlasenko · 18 years ago
  58. 5df955f Do not fail password check if shadow password does not exist - by Denis Vlasenko · 18 years ago
  59. 6ca0444 syslogd: fix "readpath bug" by using readlink instead by Denis Vlasenko · 18 years ago
  60. e968fcd lineedit: add missing #if/#endif init: fix warnings by Denis Vlasenko · 18 years ago
  61. ab2aea4 preparatory patch for -Wwrite-strings #4 by Denis Vlasenko · 18 years ago
  62. 769d1e0 fix warning from needlessly-global functions by Denis Vlasenko · 18 years ago
  63. 703e202 cleanups: unnecessary casts, unified const_1, eliminate cross-.c file by Denis Vlasenko · 18 years ago
  64. 35d4da0 exterminate u_intXXX. by Denis Vlasenko · 18 years ago
  65. 95fef70 move shell/cmdedit.c -> libbb/lineedit.c by Denis Vlasenko · 18 years ago[Renamed from shell/cmdedit.c]
  66. 38f6319 cmdedit is not a 'command' editing anymore, it's just editing (generic), by Denis Vlasenko · 18 years ago
  67. 253ce00 cmdedit: fix breakage by Denis Vlasenko · 18 years ago
  68. 6258fd3 cmdedit: stop playing dirty games with atexit by Denis Vlasenko · 18 years ago
  69. 8e1c715 Convert cmdedit into more generic line input facility by Denis Vlasenko · 18 years ago
  70. 00cdbd8 Introduce FEATURE_EDITING_FANCY_KEYS, so that user can disable by Denis Vlasenko · 18 years ago
  71. 5592fac cmdedit: more optimizations by Denis Vlasenko · 18 years ago
  72. 47bdb3a cmdedit: small optimizations by Denis Vlasenko · 18 years ago
  73. 82b39e8 sanitize cmdedit a bit (group functions by task etc) by Denis Vlasenko · 18 years ago
  74. 57ec574 * precision requires the argument be an integer, not size_t by Mike Frysinger · 18 years ago
  75. bf0a201 style fixes last xcalloc replaced by xzalloc by Denis Vlasenko · 18 years ago
  76. 7e46cf7 #define FEATURE_GETUSERNAME_AND_HOMEDIR should be always #defined by Denis Vlasenko · 18 years ago
  77. afc9ff9 removal of commented-out cruft by Denis Vlasenko · 18 years ago
  78. 0a8a774 cmdedit: reformat code a bit, no algorithm changes by Denis Vlasenko · 18 years ago
  79. d56b47f fix type character mixup in command completion by Denis Vlasenko · 18 years ago
  80. f58906b cmdedit: fix my bug, improve code a bit by Denis Vlasenko · 18 years ago
  81. 7f1dc21 cmdedit: use qsort for sorting command completion results; style fixes by Denis Vlasenko · 18 years ago
  82. 079f8af style cleanup: return(a) -> return a, part 1 by Denis Vlasenko · 18 years ago
  83. 9d4533e Fix kbuild bugs noticed by Bernhard Fischer <rep.nop@aon.at> by Denis Vlasenko · 18 years ago
  84. 966ec7c #if CONFIG_xxx -> #if ENABLE_xxx by Denis Vlasenko · 18 years ago
  85. 2d5ca60 bb_get_[chomped]line_from_file wasn't descriptive enough. Renaming... by Denis Vlasenko · 18 years ago
  86. 7d219aa build system overhaul by Denis Vlasenko · 18 years ago
  87. 8f8f268 bb_applet_name -> applet_name by Denis Vlasenko · 18 years ago
  88. 9275814 lots of silly indent fixes by Denis Vlasenko · 18 years ago
  89. 88621d7 Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damage by Rob Landley · 18 years ago
  90. 081e384 Remove xcalloc() and convert its callers to xzalloc(). About half of them by Rob Landley · 18 years ago
  91. d921b2e Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate by Rob Landley · 18 years ago
  92. 4eddb42 Remove the silly redundancy from that header file include. by "Robert P. J. Day" · 18 years ago
  93. e15d757 - move #include busybox.h to the very top so we pull in the config by Bernhard Reutner-Fischer · 19 years ago
  94. 0f2dd9f vi-mode changes: eliminate warnings from out-of-range-for-type by Paul Fox · 19 years ago
  95. dfba741 Robert P. Day removed 8 gazillion occurrences of "extern" on function by Rob Landley · 19 years ago
  96. fdb871c Add more bash-like dot-dirs cmdedit feature Close bug 648. Restore my whitespace by "Vladimir N. Oleynik" · 19 years ago
  97. c1ef7bd just whitespace by Tim Riker · 19 years ago
  98. 39a841c change interface to bb_xasprintf() - more perfect for me. by "Vladimir N. Oleynik" · 19 years ago
  99. e4baaa2 more remove lost exported by "Vladimir N. Oleynik" · 19 years ago
  100. f087480 destroy bug [0000404] by "Vladimir N. Oleynik" · 19 years ago