diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index 771788deb8..686a487908 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -2998,6 +2998,13 @@ nsh> The local Bash variable would that then shadow the environment variable with a differing value.

+

+ If CONFIG_NSH_VARS=y is selected and no arguments are provided, then the set command will list all of the local NSH variables. +

+

Set the exit on error control and/or print a trace of commands when parsing scripts in NSH. The settings are in effect from the point of execution, until they are changed again, or in the case of the initialization script, the settings are returned to the default settings when it exits. diff --git a/sched/environ/env_foreach.c b/sched/environ/env_foreach.c index 8caca1d961..39f0dcb89b 100644 --- a/sched/environ/env_foreach.c +++ b/sched/environ/env_foreach.c @@ -57,8 +57,7 @@ * Name: env_foreach * * Description: - * Search the provided environment structure for the variable of the - * specified name. + * Visit each name-value pair in the environment. * * Input Parameters: * group - The task group containing environment array to be searched.