From db8a591bc78c314c1584c55e69a41948cca4dc79 Mon Sep 17 00:00:00 2001 From: bug1 Date: Wed, 9 Apr 2003 07:51:43 +0000 Subject: fix substitution when replacing with &, we shouldnt check for an escape charcter. Its already been taken care of _somewhere_ else git-svn-id: svn://busybox.net/trunk/busybox@6788 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- editors/sed.c | 3 +-- 1 file changed, 1 insertion(+), 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, * fortunately, regmatch[0] contains the indicies to the whole matched * expression (kinda seems like it was designed for just such a * purpose...) */ - else if (replace[i] == '&' && replace[i - 1] != '\\') { + else if (replace[i] == '&') { int j; - for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++) pipeputc(line[j]); } -- cgit v1.2.3-55-g6feb