From 6f33bdc737739f5f5af91fb932f9df4d8b6f3c67 Mon Sep 17 00:00:00 2001
From: bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>
Date: Sun, 14 Sep 2003 07:59:28 +0000
Subject: Preserve substitution flag value within the current line. Fixed the
 following testcase # cat strings |./busybox sed -n -f test3.sed 1 1 2 c c #
 cat strings a b c

git-svn-id: svn://busybox.net/trunk/busybox@7503 69ca8d6d-28ef-0310-b511-8ec308f3f277
---
 editors/sed.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/editors/sed.c b/editors/sed.c
index aa3ce024e..2be4ed174 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -902,7 +902,7 @@ static void process_file(FILE * file)
 				}
 #endif
 					/* we print the pattern_space once, unless we were told to be quiet */
-					substituted = do_subst_command(sed_cmd, &pattern_space);
+					substituted |= do_subst_command(sed_cmd, &pattern_space);
 
 #ifdef CONFIG_FEATURE_SED_EMBEDED_NEWLINE
 					/* undo HACK: escape newlines twice so regex can match them */
-- 
cgit v1.2.3-55-g6feb