summaryrefslogtreecommitdiffstats
path: root/Source/cmRaiseScopeCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmRaiseScopeCommand.h')
-rw-r--r--Source/cmRaiseScopeCommand.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmRaiseScopeCommand.h b/Source/cmRaiseScopeCommand.h
index 51d4f1f..0ff2e4e 100644
--- a/Source/cmRaiseScopeCommand.h
+++ b/Source/cmRaiseScopeCommand.h
@@ -61,12 +61,13 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " raise_scope(VAR VAR2 VAR...)\n"
- "Pushes the current state of a variable into the scope above the "
+ " raise_scope(VAR [VALUE])\n"
+ "Sets the value of a variable in the scope above the "
"current scope. Each new directory or function creates a new scope. "
- "This command will push the current state of a variable into the "
+ "This command will set the value of a variable into the "
"parent directory or calling function (whichever is applicable to "
- "the case at hand)";
+ "the case at hand) If VALUE is not specified then the variable is "
+ "removed from the parent scope.";
}
/**