aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/sed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 3d6d72c68..da06bf485 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -570,7 +570,7 @@ static void do_subst_w_backrefs(const char *line, const char *replace)
570 /* go through the replacement string */ 570 /* go through the replacement string */
571 for (i = 0; replace[i]; i++) { 571 for (i = 0; replace[i]; i++) {
572 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */ 572 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
573 if (replace[i] == '\\' && replace[i+1]>0 && replace[i+1]<=9) { 573 if (replace[i] == '\\' && replace[i+1]>'0' && replace[i+1]<='9') {
574 int backref=replace[++i]-'0'; 574 int backref=replace[++i]-'0';
575 575
576 /* print out the text held in regmatch[backref] */ 576 /* print out the text held in regmatch[backref] */