From 679983dd9a335e8c8e16858cd5dc94a6451ea6e1 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 9 Nov 2015 11:08:04 +0100 Subject: [PATCH] Rename $quit to $continue refs #10559 --- lib/cli/consolecommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/consolecommand.cpp b/lib/cli/consolecommand.cpp index abcf8a170..8afe26016 100644 --- a/lib/cli/consolecommand.cpp +++ b/lib/cli/consolecommand.cpp @@ -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" - << "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 rl_completion_entry_function = ConsoleCommand::ConsoleCompleteHelper; @@ -265,7 +265,7 @@ incomplete: line = commandOnce; if (!line.empty() && line[0] == '$') { - if (line == "$quit") + if (line == "$continue") break; std::cout << "Unknown debugger command: " << line << "\n"; -- 2.40.0