aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-07-25 20:48:44 +0000
committerMark Whitley <markw@lineo.com>2000-07-25 20:48:44 +0000
commit83e85f6a0837c9cf39146c4798a8583aecba5da3 (patch)
treebe9e446af32c3c02aa20fa52259e9d22245d1368
parent52681b48dc23bf75609dfdc06933793f21fbc323 (diff)
downloadbusybox-w32-83e85f6a0837c9cf39146c4798a8583aecba5da3.tar.gz
busybox-w32-83e85f6a0837c9cf39146c4798a8583aecba5da3.tar.bz2
busybox-w32-83e85f6a0837c9cf39146c4798a8583aecba5da3.zip
Modified print_subst_w_backrefs() so it will print backslash escaped
characters properly, just like GNU sed.
-rw-r--r--editors/sed.c6
-rw-r--r--sed.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 69a5e0324..665471913 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -500,6 +500,12 @@ static void print_subst_w_backrefs(const char *line, const char *replace, regmat
500 fputc(line[j], stdout); 500 fputc(line[j], stdout);
501 } 501 }
502 502
503 /* if we find a backslash escaped character, print the character */
504 else if (replace[i] == '\\') {
505 ++i;
506 fputc(replace[i], stdout);
507 }
508
503 /* if we find an unescaped '&' print out the whole matched text. 509 /* if we find an unescaped '&' print out the whole matched text.
504 * fortunately, regmatch[0] contains the indicies to the whole matched 510 * fortunately, regmatch[0] contains the indicies to the whole matched
505 * expression (kinda seems like it was designed for just such a 511 * expression (kinda seems like it was designed for just such a
diff --git a/sed.c b/sed.c
index 69a5e0324..665471913 100644
--- a/sed.c
+++ b/sed.c
@@ -500,6 +500,12 @@ static void print_subst_w_backrefs(const char *line, const char *replace, regmat
500 fputc(line[j], stdout); 500 fputc(line[j], stdout);
501 } 501 }
502 502
503 /* if we find a backslash escaped character, print the character */
504 else if (replace[i] == '\\') {
505 ++i;
506 fputc(replace[i], stdout);
507 }
508
503 /* if we find an unescaped '&' print out the whole matched text. 509 /* if we find an unescaped '&' print out the whole matched text.
504 * fortunately, regmatch[0] contains the indicies to the whole matched 510 * fortunately, regmatch[0] contains the indicies to the whole matched
505 * expression (kinda seems like it was designed for just such a 511 * expression (kinda seems like it was designed for just such a