aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-04-19 22:36:07 -0400
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-19 22:36:07 -0400
commit96a18332316568ebccaa186ffb519b48c4310714 (patch)
tree3c3219e8642aa41902d1b1c5d04c2bf71ab5866e /editors/sed.c
parentc175c4664734e5a363d8cc8668c08f551eff1485 (diff)
downloadbusybox-96a18332316568ebccaa186ffb519b48c4310714.tar.gz
sed: fix c cmd
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c
index e5e187725..302a15605 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -1031,7 +1031,7 @@ static void process_files(void)
case 'c':
/* Only triggers on last line of a matching range. */
if (!sed_cmd->in_match)
- sed_puts(sed_cmd->string, NO_EOL_CHAR);
+ sed_puts(sed_cmd->string, '\n');
goto discard_line;
/* Read file, append contents to output */