diff --git a/src/debugger/DebuggerParser.cxx b/src/debugger/DebuggerParser.cxx index b90999b86..636506a27 100644 --- a/src/debugger/DebuggerParser.cxx +++ b/src/debugger/DebuggerParser.cxx @@ -1492,9 +1492,9 @@ void DebuggerParser::executeHelp() } else // get help for specific command { - for(const auto& c: commands) + for(auto& c: commands) { - if(argStrings[0] == c.cmdString) + if(BSPF::toLowerCase(argStrings[0]) == BSPF::toLowerCase(c.cmdString)) { commandResult << " " << red(c.description) << '\n' << c.extendedDesc; break;