ash: use pgetc_eatbnl() in more places
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 31 Mar 2018 17:21:31 +0000 (19:21 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 31 Mar 2018 17:40:56 +0000 (19:40 +0200)
commit220be537a03f029e1e619003d6f7def10103a156
tree73a8c8d1a19796c15db0dc7b238cf8bc644a4e46
parentad4e961352f04ba88019c4c2bb36c652ce9c51fa
ash: use pgetc_eatbnl() in more places

Part of upstream commit:

    Date:   Thu Mar 8 08:37:11 2018 +0100
    Author: Harald van Dijk <harald@gigawatt.nl>
    parser: use pgetc_eatbnl() in more places

    dash has a pgetc_eatbnl function in parser.c which skips any
    backslash-newline combinations. It's not used everywhere it could be.
    There is also some duplicated backslash-newline handling elsewhere in
    parser.c. Replace most of the calls to pgetc() with calls to
    pgetc_eatbnl() and remove the duplicated backslash-newline handling.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Not adding "readtoken1(pgetc_eatbnl(), DQSYNTAX..." changes, since
readtoken1() handles the "starts with backslash + newline" case itself.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c
shell/ash_test/ash-heredoc/heredoc_backslash1.right [new file with mode: 0644]
shell/ash_test/ash-heredoc/heredoc_backslash1.tests [new file with mode: 0755]
shell/ash_test/ash-heredoc/heredoc_bkslash_newline1.right [new file with mode: 0644]
shell/ash_test/ash-heredoc/heredoc_bkslash_newline1.tests [new file with mode: 0755]
shell/hush_test/hush-heredoc/heredoc_bkslash_newline1.right [new file with mode: 0644]
shell/hush_test/hush-heredoc/heredoc_bkslash_newline1.tests [new file with mode: 0755]