diff options
-rw-r--r-- | shell/ash.c | 8 |
1 files changed, 7 insertions, 1 deletions
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 @@ checkend: { 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(); } |