commit | 35e349de3c93ab75abd8a990aaa1e01658273650 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Thu Sep 05 14:31:49 2019 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Thu Sep 05 14:31:49 2019 +0200 |
tree | f40c07e77bceb3cb67fae2e0a8ca4e5b51bc7671 | |
parent | 18a90ec846f4c19b3309022d308065237145e7ce [diff] |
ash: add a FIXME comment Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash.c b/shell/ash.c index 305fb63..c5588ea 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -12393,7 +12393,13 @@ for (p = eofmark; STPUTC(c, out), *p; p++) { if (c != *p) goto more_heredoc; - + /* FIXME: fails for backslash-newlined terminator: + * cat <<EOF + * ... + * EO\ + * F + * (see heredoc_bkslash_newline2.tests) + */ c = pgetc_without_PEOA(); }