1. 5d2edbf Fix for debian bug #248106, should use int for returned getopt value. by Glenn L McGrath · 21 years ago
  2. c6992fe Update my email address, document some of my tasks in the AUTHORS file by Glenn L McGrath · 21 years ago
  3. b946695 This sed patch can only be described as "duh". Stat the source file, chmod by Eric Andersen · 21 years ago
  4. faa7d86 So I'm building a linux from scratch system, using a working script to do this by Eric Andersen · 21 years ago
  5. aff114c Larry Doolittle writes: by Eric Andersen · 21 years ago
  6. 25d8239 The last patch broke: sed -i "/^boo/a fred" ipsec.conf by Rob Landley · 21 years ago
  7. 46390ed Junio Hamano, junio at twinsun dot com writes: by Eric Andersen · 21 years ago
  8. c7bda1c Remove trailing whitespace. Update copyright to include 2004. by Eric Andersen · 21 years ago
  9. 53302f8 Add -i option to sed, to edit files in-place. by Rob Landley · 21 years ago
  10. c06f568 Rob Landley writes: by Eric Andersen · 21 years ago
  11. 40ec4ae by Rob Landley · 21 years ago
  12. 52a3c27 Patch from Matt Kraai: by Eric Andersen · 21 years ago
  13. 638da75 Fix some warnings that have crept in recently by Eric Andersen · 21 years ago
  14. 586d86c Comaptability with gcc-2.95 by Glenn L McGrath · 21 years ago
  15. 42c2573 Patch from Rob Landley; by Glenn L McGrath · 21 years ago
  16. 0ad4daa Patch from Rob Landley to fix backrefs by Glenn L McGrath · 21 years ago
  17. 738fb33 Patch by Rob Landley, fix "newline after edit command" by Glenn L McGrath · 21 years ago
  18. aa5a602 Patch by Rob Landley, work in progress update, fixes lots of bugs, by Glenn L McGrath · 21 years ago
  19. 761ec20 Fix some typo's, remove some extra free statements by Glenn L McGrath · 21 years ago
  20. 2570b43 Configuration option to define wether to follows GNU sed's behaviour by Glenn L McGrath · 21 years ago
  21. 204ff1c Fix a bug that creapt in recently with substitution subprinting, and add by Glenn L McGrath · 21 years ago
  22. 977451e Fix a simple mistake with pattern space, and add a test for it by Glenn L McGrath · 21 years ago
  23. e3e28d3 Fix some memory allocation problems by Glenn L McGrath · 21 years ago
  24. 2eed0e2 Add a test for the 'P' command and fix current implementation so it by Glenn L McGrath · 21 years ago
  25. 6e5687a A test and fix for the sed 'n' command by Glenn L McGrath · 21 years ago
  26. 7311631 Fix for the sed-append-next-line test by Glenn L McGrath · 21 years ago
  27. 640c1f5 Fix recursion problem by Glenn L McGrath · 21 years ago
  28. 294d113 Memory cleanups and fix for `echo "foo" | sed 's/foo/bar/;H;q'` by Glenn L McGrath · 21 years ago
  29. 8417c8c Cleanup memory usage by Glenn L McGrath · 21 years ago
  30. 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
  31. 3fe4756 Preserve substitution flag value within the current line. by Glenn L McGrath · 21 years ago
  32. f452356 Fix branching commands. by Glenn L McGrath · 21 years ago
  33. 8aac05b Patch from Rob Landley by Glenn L McGrath · 21 years ago
  34. 7c59a83 Stupid typo by Glenn L McGrath · 21 years ago
  35. 4dc1d25 Fix some memory allocation problems by Glenn L McGrath · 21 years ago
  36. f36635c Fix the following testcase by disabling global substitution if the regex by Glenn L McGrath · 21 years ago
  37. c18ce37 Fix the following testcase by storing the state of the adress match with by Glenn L McGrath · 21 years ago
  38. 9b04f18 Fix the substitution print subcommand, it should only print if its by Glenn L McGrath · 21 years ago
  39. 91e1978 New commands, 'G' and 'H' by Glenn L McGrath · 22 years ago
  40. fc4cb4d Fix logic error in grouped commands by Glenn L McGrath · 22 years ago
  41. d4185b0 Fix up indenting by Glenn L McGrath · 22 years ago
  42. d7fe39b Really fix the 'r' command by Glenn L McGrath · 22 years ago
  43. d87a7ac Fix the sed 'r' command by Glenn L McGrath · 22 years ago
  44. 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
  45. bd9b32b Label ends at a newline, update comments, rename linked list field by Glenn L McGrath · 22 years ago
  46. 8d6395d Run through indent by Glenn L McGrath · 22 years ago
  47. 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
  48. 7ce9e24 Add hold space commands 'g', 'h', 'x' by Glenn L McGrath · 22 years ago
  49. c6adada Rename "line" to pattern_space to be more descriptive and closer to the POSIX description by Glenn L McGrath · 22 years ago
  50. 9a52bb6 Group common string by Glenn L McGrath · 22 years ago
  51. 30b47df Small fix for sed 'y' command by Glenn L McGrath · 22 years ago
  52. f01b46d sed 'y' command, simplify some other code by Glenn L McGrath · 22 years ago
  53. 0c51832 Experimental support for embeded newline. (im evil) by Glenn L McGrath · 22 years ago
  54. a0f0f0c Still fine tunning the printing of the substitute command by Glenn L McGrath · 22 years ago
  55. 595a6a4 sed 't' branching command by Glenn L McGrath · 22 years ago
  56. ccd43a8 Fix sed 's' command's 'p' flag, so it can print line twice by Glenn L McGrath · 22 years ago
  57. b08e3e8 fix q command by Glenn L McGrath · 22 years ago
  58. 961c6c1 Add basic branching support, sed ':' and 'b' commands by Glenn L McGrath · 22 years ago
  59. 56c633c make sed cleanup use linked list by Glenn L McGrath · 22 years ago
  60. c949bfa Use a linked list for sed commands in preparation for branching support by Glenn L McGrath · 22 years ago
  61. cad5364 Major coreutils update. by Manuel Novoa III · 22 years ago
  62. 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
  63. 2971ef1 Fix a bug that corrupted the string followed commands that had no arguments (Closes #1304) by Glenn L McGrath · 22 years ago
  64. 4157a8a fix n, add N, P by Glenn L McGrath · 22 years ago
  65. ff724fb add the 'n' command by Glenn L McGrath · 22 years ago
  66. bed4033 Add the q (quit) option by Glenn L McGrath · 22 years ago
  67. f3bd7c4 Fix a delimiter matching bug i introduced. by Glenn L McGrath · 22 years ago
  68. f50ce31 Support grouped commands, i.e. {cmd1;cmd2} by Glenn L McGrath · 22 years ago
  69. 4c6523a alloc array for commands, use string ptr in parse_command_string() by Glenn L McGrath · 22 years ago
  70. e7a8bc9 use typedef for struct sed_cmd by Glenn L McGrath · 22 years ago
  71. 1fb4467 redo get_addres(). save some space. possible fix a bug where the command might be set to 0 if no second address is given. dont parse sed_cmd struct to get_address, we only need the delim field. by Glenn L McGrath · 22 years ago
  72. 2f8a401 Woops, remove the code i didnt mean to commit by Glenn L McGrath · 22 years ago
  73. d5eadea Mention the opengroup sed reference, add a check which is disabled at present. by Glenn L McGrath · 22 years ago
  74. 505bd0f Fix matching for the $ address (last line) by Glenn L McGrath · 22 years ago
  75. 0a65e19 Support the '=' command by Glenn L McGrath · 22 years ago
  76. a170e1c Change if(x)free(x); to free(x); by Aaron Lehmann · 22 years ago
  77. 00f5ecb Somehow I applied an old patch for the last commit - this one works now: by Robert Griebl · 22 years ago
  78. 7940147 Added the \CregexpC syntax as an alternative for /regexp/ (like GNU sed) by Robert Griebl · 22 years ago
  79. 2276d83 Fixup warnings and undefined operations that show up in gcc-3.1 -Erik by Eric Andersen · 23 years ago
  80. 47abc49 Patch from Simon Krahnke: by Robert Griebl · 23 years ago
  81. 5c69cd8 * editors/sed.c (process_file): Stop processing deleted lines. by Matt Kraai · 23 years ago
  82. 9eaf059 * editors/sed.c (parse_cmd_str): Remove redundant code to skip initial by Matt Kraai · 23 years ago
  83. 5ed78ad * editors/sed.c (parse_edit_cmd): Rewrite. by Matt Kraai · 23 years ago
  84. d21735d * editors/sed.c (parse_edit_command): Require a newline after the backslash by Matt Kraai · 23 years ago
  85. 7062484 Ignore blanks before the first address and before the command. by Matt Kraai · 23 years ago
  86. 0c390a7 Eliminate warning. by Matt Kraai · 23 years ago
  87. 9c6b5fc Minor warning cleanups by Eric Andersen · 23 years ago
  88. c822763 Change strdup calls to xstrdup (patch from Steve Merrifield). by Matt Kraai · 23 years ago
  89. a5f09c6 Use fopen wrapper. by Matt Kraai · 23 years ago
  90. c52a6b0 |2001-10-08 Rodney Brown <rbrown64@csc.com.au> by Eric Andersen · 23 years ago
  91. bdfd0d7 Major rework of the directory structure and the entire build system. -Erik by Eric Andersen · 23 years ago
  92. 8470b9a Fix empty line substitutions (noted by Joshua Hudson). by Matt Kraai · 23 years ago
  93. a0065d5 Fix s/[/]// handling (noted by Dumas Patrice). by Matt Kraai · 23 years ago
  94. b76cb68 A patch from Shu-Hao Chang <shuhao_chang@trend.com.tw> to by Eric Andersen · 23 years ago
  95. a3e4f45 Fix a problem with unsatisfied backrefs (noted by Martin Bene). by Matt Kraai · 23 years ago
  96. 547e102 Preserve whether or not the line was previously altered when running a by Matt Kraai · 23 years ago
  97. 5009f90 Removed obsolete function, strdup_substr. by Matt Kraai · 24 years ago
  98. ceeff73 Rewrote mkdir (and touched lots of things in the process). by Matt Kraai · 24 years ago
  99. 02c40a7 Always apply commands with no specified range. by Matt Kraai · 24 years ago
  100. 0915c4b - Fixed bug where you couldn't mix line number and regexes in two-address cmds by Mark Whitley · 24 years ago