feat(library/tactic/proof_state): add empty line between goals, closes #281

This commit is contained in:
Leonardo de Moura 2014-10-29 15:55:07 -07:00
parent b0a7888346
commit 95e843e8ed

View file

@ -47,7 +47,7 @@ format proof_state::pp(formatter const & fmt) const {
bool first = true;
for (auto const & g : get_goals()) {
if (first) first = false; else r += line();
if (first) first = false; else r += line() + line();
if (show_goal_names) {
r += group(format(g.get_name()) + colon() + nest(indent, line() + g.pp(fmt, m_subst)));
} else {