fix(library/tactic/tactic_state): do not diplay case for empty tag

This commit is contained in:
Leonardo de Moura 2017-12-11 13:47:22 -08:00
parent ebeb5f713a
commit 5fa857dc69

View file

@ -174,6 +174,7 @@ static format pp_tag(list<name> const & tag) {
tmp.push_back(n);
}
unsigned i = tmp.size();
if (i == 0) return format();
format r;
while (i > 0) {
--i;