From 0cae8768676f9c6094eb92da6c9727a0970b3593 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 12 Apr 2006 09:12:01 -0400 Subject: ENH: case insensitive command help --- Source/cmDocumentation.cxx | 1 + 1 file changed, 1 insertion(+) 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; } } -- cgit v0.12