chore(frontends/lean/builtin_cmds): handle FixedNoParam in the front-end

This commit is contained in:
Leonardo de Moura 2016-01-03 15:18:26 -08:00
parent fcf532ea67
commit 1fc7bbceb2

View file

@ -716,6 +716,7 @@ static environment congr_cmd_core(parser & p, congr_kind kind) {
if (!first) out << ", "; else first = false;
switch (k) {
case congr_arg_kind::Fixed: out << "fixed"; break;
case congr_arg_kind::FixedNoParam: out << "fixed-noparm"; break;
case congr_arg_kind::Eq: out << "eq"; break;
case congr_arg_kind::Cast: out << "cast"; break;
}