From dd527d3c6215dba1ad7ddcdd6f393b9fff6dddef Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Mon, 14 May 2001 19:53:08 +0000 Subject: ...And now that we're chomping lines, we need to re-add the newline later... --- sed.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sed.c') diff --git a/sed.c b/sed.c index 7fd803fdb..21614fc77 100644 --- a/sed.c +++ b/sed.c @@ -637,7 +637,7 @@ static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line) break; case 'a': - fputs(line, stdout); + puts(line); fputs(sed_cmd->editline, stdout); altered++; break; @@ -653,7 +653,7 @@ static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line) case 'r': { FILE *file; - fputs(line, stdout); + puts(line); file = fopen(sed_cmd->filename, "r"); if (file) print_file(file); @@ -724,7 +724,7 @@ static void process_file(FILE *file) * line was altered (via a 'd'elete or 's'ubstitution), in which case * the altered line was already printed */ if (!be_quiet && !line_altered) - fputs(line, stdout); + puts(line); free(line); } -- cgit v1.2.3