fix(frontends/lean/pp): missing comma when printing contexts
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
df07a84d11
commit
576b4e2169
1 changed files with 1 additions and 1 deletions
|
@ -1207,7 +1207,7 @@ class pp_formatter_cell : public formatter_cell {
|
|||
r = group(entry);
|
||||
first = false;
|
||||
} else {
|
||||
r += format{line(), group(entry)};
|
||||
r += format{comma(), line(), group(entry)};
|
||||
}
|
||||
c2 = replace_var_with_name(fake_context_rest(c2), n1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue