mirror of https://github.com/Icinga/icinga2.git
parent
b89a7dbdb6
commit
a6c411c6cb
|
@ -68,6 +68,11 @@ void ConsoleCommand::BreakpointHandler(ScriptFrame& frame, ScriptError *ex, cons
|
||||||
|
|
||||||
std::cout << "You can leave the debugger and continue the program with \"$quit\".\n";
|
std::cout << "You can leave the debugger and continue the program with \"$quit\".\n";
|
||||||
|
|
||||||
|
#ifdef HAVE_EDITLINE
|
||||||
|
rl_completion_entry_function = ConsoleCommand::ConsoleCompleteHelper;
|
||||||
|
rl_completion_append_character = '\0';
|
||||||
|
#endif /* HAVE_EDITLINE */
|
||||||
|
|
||||||
ConsoleCommand::RunScriptConsole(frame);
|
ConsoleCommand::RunScriptConsole(frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue