aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/sed.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/sed.c b/editors/sed.c
index db3171879..912318c04 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -722,9 +722,8 @@ static void print_subst_w_backrefs(const char *line, const char *replace,
722 * fortunately, regmatch[0] contains the indicies to the whole matched 722 * fortunately, regmatch[0] contains the indicies to the whole matched
723 * expression (kinda seems like it was designed for just such a 723 * expression (kinda seems like it was designed for just such a
724 * purpose...) */ 724 * purpose...) */
725 else if (replace[i] == '&' && replace[i - 1] != '\\') { 725 else if (replace[i] == '&') {
726 int j; 726 int j;
727
728 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++) 727 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
729 pipeputc(line[j]); 728 pipeputc(line[j]);
730 } 729 }