Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2001-05-14 23:44:44 +0400
committerMark Whitley <markw@lineo.com>2001-05-14 23:44:44 +0400
commit9de265926498000ae7adc016a25e3af0d249db79 (patch)
treecc9a66bd7e3be2401b3e66246f4b65da4d79f54d /sed.c
parent35e59bed9750e2672af11bf3f30093d5e5bd1777 (diff)
We will chomp() lines so REG_NEWLINE does not break stuff. Thanks, Matt.
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sed.c b/sed.c
index 99c49c327..7fd803fdb 100644
--- 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;