From: Gunnar Beutner Date: Mon, 9 Nov 2015 10:08:04 +0000 (+0100) Subject: Rename $quit to $continue X-Git-Tag: v2.4.0~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=679983dd9a335e8c8e16858cd5dc94a6451ea6e1;p=icinga2 Rename $quit to $continue refs #10559 --- 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";