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: { goto done; case '\\': - pc = pgetc(); /* or pgetc_eatbnl()? why (example)? */ + pc = pgetc(); /* not pgetc_eatbnl! */ if (pc != '\\' && pc != '`' && pc != '$' && (!synstack->dblquote || pc != '"') ) { |