From 8470b9a85c4f202e0167bfba13460d89a9da876c Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Tue, 23 Oct 2001 21:12:07 +0000 Subject: Fix empty line substitutions (noted by Joshua Hudson). --- editors/sed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/sed.c') diff --git a/editors/sed.c b/editors/sed.c index 989df7cb4..709fb13a8 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -589,8 +589,8 @@ static int do_subst_command(const struct sed_cmd *sed_cmd, char **line) /* and now, as long as we've got a line to try matching and if we can match * the search string, we make substitutions */ - while (*hackline && (regexec(sed_cmd->sub_match, hackline, - sed_cmd->num_backrefs+1, regmatch, 0) == 0) ) { + while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline, + sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) { int i; /* print everything before the match */ -- cgit v1.2.3