aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/sed.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/sed.c')
-rw-r--r--toys/posix/sed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/sed.c b/toys/posix/sed.c
index 9d377cdb..a57891e5 100644
--- a/toys/posix/sed.c
+++ b/toys/posix/sed.c
@@ -718,7 +718,7 @@ static char *unescape_delimited_string(char **pstr, char *delim, int regex)
if (!*from) return 0;
// delimiter in regex character range doesn't count
- if (*from == '[') {
+ if (!mode && *from == '[') {
mode = '[';
if (from[1] == ']') *(to++) = *(from++);
} else if (mode && *from == ']') mode = 0;