diff options
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index ecb9b132b..ac25866ec 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -12811,7 +12811,7 @@ parsebackq: { | |||
12811 | goto done; | 12811 | goto done; |
12812 | 12812 | ||
12813 | case '\\': | 12813 | case '\\': |
12814 | pc = pgetc(); /* or pgetc_eatbnl()? why (example)? */ | 12814 | pc = pgetc(); /* not pgetc_eatbnl! */ |
12815 | if (pc != '\\' && pc != '`' && pc != '$' | 12815 | if (pc != '\\' && pc != '`' && pc != '$' |
12816 | && (!synstack->dblquote || pc != '"') | 12816 | && (!synstack->dblquote || pc != '"') |
12817 | ) { | 12817 | ) { |