Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-26 | Rich Filker spotted that sed -e 's/xxx/[/' didn't work right. Did a smaller | Rob Landley | |
fix than his, and shrank the code a bit on top of that so the net size is smaller, and added a test to the test suite for this case. Plus I cleaned up the #includes and removed unnecessary "const"s while I was there. | |||
2006-07-02 | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | |
2006-07-01 | Remove all usage of the "register" storage class specifier. | "Robert P. J. Day" | |
2006-06-28 | Fix http://bugs.busybox.net/view.php?id=826 in which "(echo; echo) | sed x" | Rob Landley | |
crashes because the empty state of the hold space is NULL but the empty state of the pattern space is "". | |||
2006-06-25 | A few patches from Erik Hovland, turning strncpy() into safe_strncpy() and | Rob Landley | |
removing some unnecessary code. | |||
2006-06-21 | Remove pointless "inline" wrapper around get_terminal_width_height(). | Rob Landley | |
2006-06-21 | Zubicaray reported a bug in vi that causes it to eat 100% cpu when you close | Rob Landley | |
an xterm it's running in. The vi signal behavior would catch and restarts lots of signals, like SIGHUP, that should just kill the thing. (Leftover behavior from when it would segfault all the time.) Filtered out the more obviously bad ones. If it segfaults, we should find and fix the problem. | |||
2006-06-09 | - make sure that we see string_insert only if we need it. | Bernhard Reutner-Fischer | |
2006-06-07 | - reuse strings and messages. Saves about 600B | Bernhard Reutner-Fischer | |
2006-06-05 | Confirming it's not needed. | Rob Landley | |
2006-06-03 | - use bb functions instead of handrolling stuff. | Bernhard Reutner-Fischer | |
- add XXX question about supposedly superfluous else clause text data bss dec hex filename 5918 0 0 5918 171e editors/sed.o.orig 5901 0 0 5901 170d editors/sed.o | |||
2006-05-27 | Consolidate #include <sys/time.h> so libbb.h does it. | Rob Landley | |
2006-05-26 | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | |
head, and change all the callers. | |||
2006-05-24 | Yann Morin spotted some leftover flotsam from halfway through the recent | Rob Landley | |
llist.c interface change that accidentally got checked in. My bad. | |||
2006-05-21 | Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary | Rob Landley | |
memset, collate variable declarations... | |||
2006-05-19 | - remove SIGIOT as suggested by landley. | Bernhard Reutner-Fischer | |
2006-05-19 | - Rich Felker writes: | Bernhard Reutner-Fischer | |
SIGIOT is not defined in any standard i can find and it seems to be useless (alias for SIGABRT) on linux. i put it in #ifdef but it's probably best just to remove it and cut down the size a bit. | |||
2006-05-19 | - remove superfluous legacy includes. | Bernhard Reutner-Fischer | |
This applet should be converted to use llist; __NEED_DLLIST | |||
2006-05-19 | - include strings.h | Bernhard Reutner-Fischer | |
Thanks to Rich Felker for pointing this out. | |||
2006-05-13 | pull Rules.mak from top_srcdir as pointed out by Robert P. J. Day on the ↵ | Mike Frysinger | |
mailing list | |||
2006-05-09 | Convert sed's static variables to a single global structure. | Rob Landley | |
2006-05-08 | Move sed over to the generic llist_t for append. Saves about 90 bytes. | Rob Landley | |
2006-05-07 | Patch to fix bug 868, and some related cleanup while I was in the area. | Rob Landley | |
A tab is now taken as the end of filename if it's there, but if it isn't (because the timestamp isn't there) we continue with the existing untruncated line as the filename. | |||
2006-05-07 | Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes | Rob Landley | |
as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code. | |||
2006-05-04 | It was sitting there, in the patches directory, for years. It was delete it | Rob Landley | |
or apply it. It's small, simple, evil, part of SUSv3, and we can switch it off. | |||
2006-04-16 | touchup comment | Mike Frysinger | |
2006-04-13 | Patch from Robert P Day: let menuconfig indent stuff for us, we don't have | Rob Landley | |
to do it in Config.in. | |||
2006-04-05 | adjust ifdefs for inclusion of string_insert() routine | Paul Fox | |
2006-03-28 | fix behavior of ZZ, with respect to readonly mode(s). original | Paul Fox | |
patch and report from Alexander Griesser. | |||
2006-03-27 | add support for :wn (initial patch from Alexander Griesser) | Paul Fox | |
2006-03-27 | drop obsolete version string in favor of actual BB version (from | Paul Fox | |
Bernhard Fischer) | |||
2006-03-13 | - revert back to r14406 | Bernhard Reutner-Fischer | |
2006-03-10 | Patch from Denis Vlasenko turning static const int (which gets emitted into | Rob Landley | |
the busybox binary) into enums (which don't). | |||
2006-03-09 | Portability patch from rfelker. The bb_asprintf.c thing needs an eventual | Rob Landley | |
follow up in platform.h to set the #ifdef, but the workaround works for everybody, so... | |||
2006-03-09 | - backout using features which are not available with the previous stable | Bernhard Reutner-Fischer | |
version of make (3.71.1). | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2006-03-02 | - use absolute path for top_builddir and top_srcdir. | Bernhard Reutner-Fischer | |
Fixes make trying to include the very same file in an endless loop. | |||
2006-03-02 | - silence warning about "'free_and_close_stuff' used but never defined" | Bernhard Reutner-Fischer | |
2006-03-01 | - fixes parallel builds (make -j) | Bernhard Reutner-Fischer | |
- use less resources for the buildsystem itself | |||
2006-03-01 | - fix compilation of sed. | Bernhard Reutner-Fischer | |
error: static declaration of 'free_and_close_stuff' follows non-static declaration Tiny whitespace cleanup while at it, also make sure that we don't use CONFIG_ anymore. Rob, hope this is ok w/ you.. | |||
2006-03-01 | Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x) | Rob Landley | |
from before "if(x) free(x)". | |||
2006-02-24 | A few changes falling out from the effort to make sed handle embedded NUL bytes. | Rob Landley | |
Checking in to reduce the diff between my tree and svn... | |||
2006-02-21 | Don't build directory libraries unless we're building an applet that needs it. | Rob Landley | |
Cherry-picked from Devin Bayer's big MacOS X patch. | |||
2006-02-14 | Patch from awk maintainer (Dmitry Zakhrov) to fix bugs 642, 663, and 667. | Rob Landley | |
2006-02-02 | make the build system puuuuuuuuuuurty | Mike Frysinger | |
2006-01-31 | changed strange mix signed<->unsigned | "Vladimir N. Oleynik" | |
2006-01-30 | fix up yet more annoying signed/unsigned and mixed type errors | Eric Andersen | |
2006-01-30 | clean up yet more annoying signed/unsigned mismatches and fixup | Eric Andersen | |
yet more incorrect types | |||
2006-01-30 | removed warning "comparison between signed and unsigned". Added ↵ | "Vladimir N. Oleynik" | |
ATTRIBUTE_UNUSED. Whitespace | |||
2006-01-25 | just whitespace | Tim Riker | |