fix(frontends/lean/old_elaborator): remove "old" [intro]

This commit is contained in:
Leonardo de Moura 2016-07-10 10:39:34 -07:00
parent df113de725
commit f79e46a8a0

View file

@ -37,14 +37,6 @@ void initialize_old_attributes() {
[](environment const & env, name const & n) {
return LEAN_DEFAULT_PRIORITY;
});
register_prio_attribute("intro", "introduction rule for backward chaining",
[](environment const & env, io_state const & ios, name const & d, unsigned prio, name const & ns, bool persistent) {
return env;
},
[](environment const &, name const &) { return false; },
[](environment const & env, name const & d) {
return LEAN_DEFAULT_PRIORITY;
});
}
void finalize_old_attributes() {}
}