ENH: case insensitive command help

This commit is contained in:
Bill Hoffman 2006-04-12 09:12:01 -04:00
parent 1f5f2ce85f
commit 0cae876867
1 changed files with 1 additions and 0 deletions

View File

@ -434,6 +434,7 @@ bool cmDocumentation::CheckOptions(int argc, const char* const* argv)
if((i+1 < argc) && !this->IsOption(argv[i+1]))
{
this->SingleCommand = argv[i+1];
this->SingleCommand = cmSystemTools::UpperCase(this->SingleCommand);
i = i+1;
}
}