chore(frontends/lean/server.cpp): add BEGIN/END for WAIT command

This commit is contained in:
Soonho Kong 2014-09-08 16:00:59 -07:00
parent bc640510aa
commit c88bfc0c02

View file

@ -779,7 +779,9 @@ bool server::operator()(std::istream & in) {
} else if (is_command(g_options, line)) {
show_options();
} else if (is_command(g_wait, line)) {
m_out << "-- BEGINWAIT" << std::endl;
m_worker.wait();
m_out << "-- ENDWAIT" << std::endl;
} else if (is_command(g_show, line)) {
show(false);
} else if (is_command(g_valid, line)) {