mu-server: add a bit more debugging info

This commit is contained in:
Dirk-Jan C. Binnema
2022-05-30 20:30:33 +03:00
parent 59022e066d
commit 734445f78d
3 changed files with 26 additions and 5 deletions

View File

@ -64,6 +64,13 @@ static bool is_a_tty{};
static std::string hist_path;
static size_t max_lines{};
bool
Mu::have_readline()
{
return HAVE_READLINE != 0;
}
void
Mu::setup_readline(const std::string& histpath, size_t maxlines)
{