summaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko2018-07-24 17:08:04 +0200
committerDenys Vlasenko2018-07-24 17:10:18 +0200
commit63c42afaa43d42def05dfbca1f4e10c7314b1f77 (patch)
treeb88436d25560b74b7f626739c4ab14c12aff219a /shell/ash.c
parent41ef41b3e0a16c9f8524870a2dc4f768c237939e (diff)
downloadbusybox-63c42afaa43d42def05dfbca1f4e10c7314b1f77.zip
busybox-63c42afaa43d42def05dfbca1f4e10c7314b1f77.tar.gz
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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 051cc67..03fbbee 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -8512,7 +8512,8 @@ describe_command(char *command, const char *path, int describe_command_verbose)
case CMDFUNCTION:
if (describe_command_verbose) {
- out1str(" is a shell function");
+ /*out1str(" is a shell function");*/
+ out1str(" is a function"); /* bash says this */
} else {
out1str(command);
}