- 6d655be removed a lot of trailing \n in bb_msg() calls. It is added by Denis Vlasenko · 18 years ago
- d921b2e Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate by Rob Landley · 18 years ago
- 4795e4e Rich Filker spotted that sed -e 's/xxx/[/' didn't work right. Did a smaller by Rob Landley · 18 years ago
- ea7c185 Fix http://bugs.busybox.net/view.php?id=826 in which "(echo; echo) | sed x" by Rob Landley · 18 years ago
- 19008b8 - reuse strings and messages. Saves about 600B by Bernhard Reutner-Fischer · 19 years ago
- 12d8755 Confirming it's not needed. by Rob Landley · 19 years ago
- a3d4bf3 - use bb functions instead of handrolling stuff. by Bernhard Reutner-Fischer · 19 years ago
- 8bb5078 Change llist_add_* to take the address of the list rather than returning the new by Rob Landley · 19 years ago
- 5fc467e Yann Morin spotted some leftover flotsam from halfway through the recent by Rob Landley · 19 years ago
- 9ffd423 Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary by Rob Landley · 19 years ago
- e3f5a3f Convert sed's static variables to a single global structure. by Rob Landley · 19 years ago
- 0b65628 Move sed over to the generic llist_t for append. Saves about 90 bytes. by Rob Landley · 19 years ago
- 1f305dc Portability patch from rfelker. The bb_asprintf.c thing needs an eventual by Rob Landley · 19 years ago
- dfba741 Robert P. Day removed 8 gazillion occurrences of "extern" on function by Rob Landley · 19 years ago
- c0bb308 - silence warning about "'free_and_close_stuff' used but never defined" by Bernhard Reutner-Fischer · 19 years ago
- b7f3973 - fix compilation of sed. by Bernhard Reutner-Fischer · 19 years ago
- e7c43b6 Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x) by Rob Landley · 19 years ago
- 2b26fd5 A few changes falling out from the effort to make sed handle embedded NUL bytes. by Rob Landley · 19 years ago
- c1ef7bd just whitespace by Tim Riker · 19 years ago
- fae1dc8 Support # comments after s/// option list. by Rob Landley · 19 years ago
- c63fe91 \0 is a synonym for &. Our own "make allbaseconfig" breaks without this. by Rob Landley · 19 years ago
- 23f62fc split libbb: moved xregcomp separatelly for speed up recompile by "Vladimir N. Oleynik" · 19 years ago
- babd3fb Missing break was screwing up 'y//' command. Bug #248. by Rob Landley · 19 years ago
- 93850a5 Patch from Colin Watson (mangled slightly by Rob Landley): by Rob Landley · 20 years ago
- 5797c7f Doug Swarin pointed out a security bug in the -i option of sed. by Rob Landley · 20 years ago
- 14f5c8d Patch from Bernhard Fischer to make a bunch of symbols static by Eric Andersen · 20 years ago
- dcc2866 Hiroshi found another bug. Currently sed's $ triggers at end of every file, by Rob Landley · 20 years ago
- ce4f0e9 Hiroshi Ito found some bugs. The 'c' command (cut and paste) was hardwired by Rob Landley · 20 years ago
- 9855548 Rob Landley writes: by Eric Andersen · 21 years ago
- 21d7d61 Use int instead of char for return type, in theory avoiding a cast by Glenn L McGrath · 21 years ago
- 5d2edbf Fix for debian bug #248106, should use int for returned getopt value. by Glenn L McGrath · 21 years ago
- c6992fe Update my email address, document some of my tasks in the AUTHORS file by Glenn L McGrath · 21 years ago
- b946695 This sed patch can only be described as "duh". Stat the source file, chmod by Eric Andersen · 21 years ago
- faa7d86 So I'm building a linux from scratch system, using a working script to do this by Eric Andersen · 21 years ago
- aff114c Larry Doolittle writes: by Eric Andersen · 21 years ago
- 25d8239 The last patch broke: sed -i "/^boo/a fred" ipsec.conf by Rob Landley · 21 years ago
- 46390ed Junio Hamano, junio at twinsun dot com writes: by Eric Andersen · 21 years ago
- c7bda1c Remove trailing whitespace. Update copyright to include 2004. by Eric Andersen · 21 years ago
- 53302f8 Add -i option to sed, to edit files in-place. by Rob Landley · 21 years ago
- c06f568 Rob Landley writes: by Eric Andersen · 21 years ago
- 40ec4ae by Rob Landley · 21 years ago
- 52a3c27 Patch from Matt Kraai: by Eric Andersen · 21 years ago
- 638da75 Fix some warnings that have crept in recently by Eric Andersen · 21 years ago
- 586d86c Comaptability with gcc-2.95 by Glenn L McGrath · 21 years ago
- 42c2573 Patch from Rob Landley; by Glenn L McGrath · 21 years ago
- 0ad4daa Patch from Rob Landley to fix backrefs by Glenn L McGrath · 21 years ago
- 738fb33 Patch by Rob Landley, fix "newline after edit command" by Glenn L McGrath · 21 years ago
- aa5a602 Patch by Rob Landley, work in progress update, fixes lots of bugs, by Glenn L McGrath · 21 years ago
- 761ec20 Fix some typo's, remove some extra free statements by Glenn L McGrath · 21 years ago
- 2570b43 Configuration option to define wether to follows GNU sed's behaviour
by Glenn L McGrath · 21 years ago
- 204ff1c Fix a bug that creapt in recently with substitution subprinting, and add by Glenn L McGrath · 21 years ago
- 977451e Fix a simple mistake with pattern space, and add a test for it by Glenn L McGrath · 21 years ago
- e3e28d3 Fix some memory allocation problems by Glenn L McGrath · 21 years ago
- 2eed0e2 Add a test for the 'P' command and fix current implementation so it by Glenn L McGrath · 21 years ago
- 6e5687a A test and fix for the sed 'n' command by Glenn L McGrath · 21 years ago
- 7311631 Fix for the sed-append-next-line test by Glenn L McGrath · 21 years ago
- 640c1f5 Fix recursion problem by Glenn L McGrath · 21 years ago
- 294d113 Memory cleanups and fix for `echo "foo" | sed 's/foo/bar/;H;q'` by Glenn L McGrath · 21 years ago
- 8417c8c Cleanup memory usage by Glenn L McGrath · 21 years ago
- edc388c The previous fix for 's/a/1/;s/b/2/;t one;p;:one;p' broke the case of by Glenn L McGrath · 21 years ago
- 3fe4756 Preserve substitution flag value within the current line. by Glenn L McGrath · 21 years ago
- f452356 Fix branching commands. by Glenn L McGrath · 21 years ago
- 8aac05b Patch from Rob Landley
by Glenn L McGrath · 21 years ago
- 7c59a83 Stupid typo by Glenn L McGrath · 21 years ago
- 4dc1d25 Fix some memory allocation problems by Glenn L McGrath · 21 years ago
- f36635c Fix the following testcase by disabling global substitution if the regex by Glenn L McGrath · 21 years ago
- c18ce37 Fix the following testcase by storing the state of the adress match with by Glenn L McGrath · 21 years ago
- 9b04f18 Fix the substitution print subcommand, it should only print if its by Glenn L McGrath · 21 years ago
- 91e1978 New commands, 'G' and 'H' by Glenn L McGrath · 22 years ago
- fc4cb4d Fix logic error in grouped commands by Glenn L McGrath · 22 years ago
- d4185b0 Fix up indenting by Glenn L McGrath · 22 years ago
- d7fe39b Really fix the 'r' command by Glenn L McGrath · 22 years ago
- d87a7ac Fix the sed 'r' command by Glenn L McGrath · 22 years ago
- 2410386 fix substitution when replacing with &, we shouldnt check for an escape charcter. Its already been taken care of _somewhere_ else by Glenn L McGrath · 22 years ago
- bd9b32b Label ends at a newline, update comments, rename linked list field by Glenn L McGrath · 22 years ago
- 8d6395d Run through indent by Glenn L McGrath · 22 years ago
- c1d9507 Fixes block commands to correctly identify end of block, recognise the #n directive, fix substitue command when regex isnt specified by Glenn L McGrath · 22 years ago
- 7ce9e24 Add hold space commands 'g', 'h', 'x' by Glenn L McGrath · 22 years ago
- c6adada Rename "line" to pattern_space to be more descriptive and closer to the POSIX description by Glenn L McGrath · 22 years ago
- 9a52bb6 Group common string by Glenn L McGrath · 22 years ago
- 30b47df Small fix for sed 'y' command by Glenn L McGrath · 22 years ago
- f01b46d sed 'y' command, simplify some other code by Glenn L McGrath · 22 years ago
- 0c51832 Experimental support for embeded newline. (im evil) by Glenn L McGrath · 22 years ago
- a0f0f0c Still fine tunning the printing of the substitute command by Glenn L McGrath · 22 years ago
- 595a6a4 sed 't' branching command by Glenn L McGrath · 22 years ago
- ccd43a8 Fix sed 's' command's 'p' flag, so it can print line twice by Glenn L McGrath · 22 years ago
- b08e3e8 fix q command by Glenn L McGrath · 22 years ago
- 961c6c1 Add basic branching support, sed ':' and 'b' commands by Glenn L McGrath · 22 years ago
- 56c633c make sed cleanup use linked list by Glenn L McGrath · 22 years ago
- c949bfa Use a linked list for sed commands in preparation for branching support by Glenn L McGrath · 22 years ago
- cad5364 Major coreutils update. by Manuel Novoa III · 22 years ago
- e01f966 Match newlines, this fixes matching of ^ or $ when there is a '\n' in the pattern being matched. This fixes cases when the N command is used. by Glenn L McGrath · 22 years ago
- 2971ef1 Fix a bug that corrupted the string followed commands that had no arguments (Closes #1304) by Glenn L McGrath · 22 years ago
- 4157a8a fix n, add N, P by Glenn L McGrath · 22 years ago
- ff724fb add the 'n' command by Glenn L McGrath · 22 years ago
- bed4033 Add the q (quit) option by Glenn L McGrath · 22 years ago
- f3bd7c4 Fix a delimiter matching bug i introduced. by Glenn L McGrath · 22 years ago
- f50ce31 Support grouped commands, i.e. {cmd1;cmd2} by Glenn L McGrath · 22 years ago
- 4c6523a alloc array for commands, use string ptr in parse_command_string() by Glenn L McGrath · 22 years ago
- e7a8bc9 use typedef for struct sed_cmd by Glenn L McGrath · 22 years ago