commit | d928accbbd59732a5d6c536be0adb68b466d603f | [log] [tgz] |
---|---|---|
author | Mark Whitley <markw@lineo.com> | Mon May 14 20:44:26 2001 +0000 |
committer | Mark Whitley <markw@lineo.com> | Mon May 14 20:44:26 2001 +0000 |
tree | 7e00d66b28bb4d32b06601726d91c6a2128fbee8 | |
parent | 2416dfc3c9398aaeb37cf31df667784b8f1fe563 [diff] [blame] |
...Need to print just a few more newlines.
diff --git a/sed.c b/sed.c index 21614fc..1c22770 100644 --- a/sed.c +++ b/sed.c
@@ -579,7 +579,10 @@ /* if there's anything left of the line, print it */ if (*hackline) - fputs(hackline, stdout); + puts(hackline); + /* otherwise, we need to print a newline */ + else + printf("\n"); /* cleanup */ free(regmatch); @@ -594,7 +597,7 @@ switch (sed_cmd->cmd) { case 'p': - fputs(line, stdout); + puts(line); break; case 'd':