From 4eeba49507f5fa642682db827e0bce2ed16fa241 Mon Sep 17 00:00:00 2001
From: Gregory Nutt
+ If CONFIG_NSH_VARS=y
is selected and no arguments are provided, then the set
command will list all of the local NSH variables.
+
+nsh> set +foolbar=foovalue +
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.