summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentation.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-04-12 13:12:01 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-04-12 13:12:01 (GMT)
commit0cae8768676f9c6094eb92da6c9727a0970b3593 (patch)
treecd6ab9ba1b06c1c266d44e9c354e2017801be65a /Source/cmDocumentation.cxx
parent1f5f2ce85f50faed6f1f6acd2eb8436e241f210c (diff)
downloadCMake-0cae8768676f9c6094eb92da6c9727a0970b3593.zip
CMake-0cae8768676f9c6094eb92da6c9727a0970b3593.tar.gz
CMake-0cae8768676f9c6094eb92da6c9727a0970b3593.tar.bz2
ENH: case insensitive command help
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r--Source/cmDocumentation.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx
index 54684b8..168774a 100644
--- a/Source/cmDocumentation.cxx
+++ b/Source/cmDocumentation.cxx
@@ -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;
}
}