From 114541b98e755bd28a9386008a352065bd942875 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 11 Mar 2020 22:09:15 -0500 Subject: Redo NOFORK plumbing so commands like eval/unset can access/edit shell state. --- toys/other/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other/help.c') diff --git a/toys/other/help.c b/toys/other/help.c index 686f862b..179dd4e7 100644 --- a/toys/other/help.c +++ b/toys/other/help.c @@ -42,7 +42,7 @@ void help_main(void) { int i; - // If called with no arguments as a builtin form the shell, show all builtins + // If called with no arguments as a builtin from the shell, show all builtins if (toys.rebound && !*toys.optargs && !toys.optflags) { for (i = 0; i < toys.toycount; i++) { if (!(toy_list[i].flags&(TOYFLAG_NOFORK|TOYFLAG_MAYFORK))) continue; -- cgit v1.2.3