aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
AgeCommit message (Expand)Author
2003-10-09Fix some warnings that have crept in recentlyEric Andersen
2003-10-09Comaptability with gcc-2.95Glenn L McGrath
2003-10-04Patch from Rob Landley;Glenn L McGrath
2003-10-01Patch from Rob Landley to fix backrefsGlenn L McGrath
2003-10-01Patch by Rob Landley, fix "newline after edit command"Glenn L McGrath
2003-10-01Patch by Rob Landley, work in progress update, fixes lots of bugs,Glenn L McGrath
2003-09-24Fix some typo's, remove some extra free statementsGlenn L McGrath
2003-09-16Configuration option to define wether to follows GNU sed's behaviour Glenn L McGrath
2003-09-16Fix a bug that creapt in recently with substitution subprinting, and addGlenn L McGrath
2003-09-15Fix a simple mistake with pattern space, and add a test for itGlenn L McGrath
2003-09-15Fix some memory allocation problemsGlenn L McGrath
2003-09-15Add a test for the 'P' command and fix current implementation so itGlenn L McGrath
2003-09-15A test and fix for the sed 'n' commandGlenn L McGrath
2003-09-15Fix for the sed-append-next-line testGlenn L McGrath
2003-09-15Fix recursion problemGlenn L McGrath
2003-09-14Memory cleanups and fix for `echo "foo" | sed 's/foo/bar/;H;q'`Glenn L McGrath
2003-09-14Cleanup memory usageGlenn L McGrath
2003-09-14The previous fix for 's/a/1/;s/b/2/;t one;p;:one;p' broke the case ofGlenn L McGrath
2003-09-14Preserve substitution flag value within the current line.Glenn L McGrath
2003-09-14Fix branching commands.Glenn L McGrath
2003-09-14Patch from Rob Landley Glenn L McGrath
2003-09-14Stupid typoGlenn L McGrath
2003-09-14Fix some memory allocation problemsGlenn L McGrath
2003-09-13Fix the following testcase by disabling global substitution if the regexGlenn L McGrath
2003-09-13Fix the following testcase by storing the state of the adress match withGlenn L McGrath
2003-08-30Fix the substitution print subcommand, it should only print if itsGlenn L McGrath
2003-04-26New commands, 'G' and 'H'Glenn L McGrath
2003-04-12Fix logic error in grouped commandsGlenn L McGrath
2003-04-11Fix up indentingGlenn L McGrath
2003-04-09Really fix the 'r' commandGlenn L McGrath
2003-04-09Fix the sed 'r' commandGlenn L McGrath
2003-04-09fix substitution when replacing with &, we shouldnt check for an escape charc...Glenn L McGrath
2003-04-09Label ends at a newline, update comments, rename linked list fieldGlenn L McGrath
2003-04-08Run through indentGlenn L McGrath
2003-04-08Fixes block commands to correctly identify end of block, recognise the #n dir...Glenn L McGrath
2003-04-07Add hold space commands 'g', 'h', 'x'Glenn L McGrath
2003-04-07Rename "line" to pattern_space to be more descriptive and closer to the POSIX...Glenn L McGrath
2003-03-30Group common stringGlenn L McGrath
2003-03-30Small fix for sed 'y' commandGlenn L McGrath
2003-03-30sed 'y' command, simplify some other codeGlenn L McGrath
2003-03-30Experimental support for embeded newline. (im evil)Glenn L McGrath
2003-03-28Still fine tunning the printing of the substitute commandGlenn L McGrath
2003-03-28sed 't' branching commandGlenn L McGrath
2003-03-28Fix sed 's' command's 'p' flag, so it can print line twiceGlenn L McGrath
2003-03-28fix q commandGlenn L McGrath
2003-03-28Add basic branching support, sed ':' and 'b' commandsGlenn L McGrath
2003-03-28make sed cleanup use linked listGlenn L McGrath
2003-03-28Use a linked list for sed commands in preparation for branching supportGlenn L McGrath
2003-03-19Major coreutils update.Manuel Novoa III
2003-03-18Match newlines, this fixes matching of ^ or $ when there is a '\n' in the pat...Glenn L McGrath