We will chomp() lines so REG_NEWLINE does not break stuff. Thanks, Matt.
authorMark Whitley <markw@lineo.com>
Mon, 14 May 2001 19:44:44 +0000 (19:44 -0000)
committerMark Whitley <markw@lineo.com>
Mon, 14 May 2001 19:44:44 +0000 (19:44 -0000)
editors/sed.c
sed.c

index 99c49c3..7fd803f 100644 (file)
@@ -677,6 +677,7 @@ static void process_file(FILE *file)
        /* go through every line in the file */
        while ((line = get_line_from_file(file)) != NULL) {
 
+               chomp(line);
                linenum++;
                line_altered = 0;
 
diff --git a/sed.c b/sed.c
index 99c49c3..7fd803f 100644 (file)
--- a/sed.c
+++ b/sed.c
@@ -677,6 +677,7 @@ static void process_file(FILE *file)
        /* go through every line in the file */
        while ((line = get_line_from_file(file)) != NULL) {
 
+               chomp(line);
                linenum++;
                line_altered = 0;