Rename $quit to $continue

refs #10559
This commit is contained in:
Gunnar Beutner 2015-11-09 11:08:04 +01:00
parent ff8a477a6e
commit 679983dd9a
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ void ConsoleCommand::BreakpointHandler(ScriptFrame& frame, ScriptError *ex, cons
} }
std::cout << "You can inspect expressions (such as variables) by entering them at the prompt.\n" std::cout << "You can inspect expressions (such as variables) by entering them at the prompt.\n"
<< "To leave the debugger and continue the program use \"$quit\".\n"; << "To leave the debugger and continue the program use \"$continue\".\n";
#ifdef HAVE_EDITLINE #ifdef HAVE_EDITLINE
rl_completion_entry_function = ConsoleCommand::ConsoleCompleteHelper; rl_completion_entry_function = ConsoleCommand::ConsoleCompleteHelper;
@ -265,7 +265,7 @@ incomplete:
line = commandOnce; line = commandOnce;
if (!line.empty() && line[0] == '$') { if (!line.empty() && line[0] == '$') {
if (line == "$quit") if (line == "$continue")
break; break;
std::cout << "Unknown debugger command: " << line << "\n"; std::cout << "Unknown debugger command: " << line << "\n";