We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a8f9b commit 4c64166Copy full SHA for 4c64166
lldb/source/Interpreter/CommandInterpreter.cpp
@@ -956,7 +956,8 @@ void CommandInterpreter::LoadCommandDictionary() {
956
"_regexp-step <function-name> // Step into the named function\n",
957
0, false));
958
if (step_regex_cmd_sp) {
959
- if (step_regex_cmd_sp->AddRegexCommand("^$", "thread step-in") &&
+ if (step_regex_cmd_sp->AddRegexCommand("^[[:space:]]*$",
960
+ "thread step-in") &&
961
step_regex_cmd_sp->AddRegexCommand("^[[:space:]]*(-.*)$",
962
"thread step-in %1") &&
963
step_regex_cmd_sp->AddRegexCommand(
0 commit comments