diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-24 17:08:04 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-07-24 17:10:18 +0200 |
commit | 63c42afaa43d42def05dfbca1f4e10c7314b1f77 (patch) | |
tree | b88436d25560b74b7f626739c4ab14c12aff219a /shell/ash.c | |
parent | 41ef41b3e0a16c9f8524870a2dc4f768c237939e (diff) | |
download | busybox-w32-63c42afaa43d42def05dfbca1f4e10c7314b1f77.tar.gz busybox-w32-63c42afaa43d42def05dfbca1f4e10c7314b1f77.tar.bz2 busybox-w32-63c42afaa43d42def05dfbca1f4e10c7314b1f77.zip |
hush: add "heredoc.tests" from ash, tweak ash "is a function" message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 051cc671f..03fbbee53 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -8512,7 +8512,8 @@ describe_command(char *command, const char *path, int describe_command_verbose) | |||
8512 | 8512 | ||
8513 | case CMDFUNCTION: | 8513 | case CMDFUNCTION: |
8514 | if (describe_command_verbose) { | 8514 | if (describe_command_verbose) { |
8515 | out1str(" is a shell function"); | 8515 | /*out1str(" is a shell function");*/ |
8516 | out1str(" is a function"); /* bash says this */ | ||
8516 | } else { | 8517 | } else { |
8517 | out1str(command); | 8518 | out1str(command); |
8518 | } | 8519 | } |