aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-09-29 16:25:32 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2020-09-29 20:21:27 +0200
commit777a6357c09e1e91acfde060144dd019e3baaf3c (patch)
tree3648936b10d1ec29384d2e6c3be46761fdc3b3a7 /shell/ash.c
parentafb5d8b2db432b8433ba80a1206ae41ef4f4ea8b (diff)
downloadbusybox-777a6357c09e1e91acfde060144dd019e3baaf3c.tar.gz
ash: remove a tentative TODO, it's a wrong idea
Upstream tried it, and then reverted by: From: Herbert Xu <herbert@gondor.apana.org.au> Date: Tue, 26 May 2020 23:19:05 +1000 parser: Fix double-backslash nl in old-style command sub Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
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 != '"')
) {