aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/SubstEvars.v
blob: 5e1765c2f055ee05fade4caa6b67d42ddbdb2030 (plain)
1
2
3
4
Ltac subst_evars :=
  repeat match goal with
         | [ e := ?E |- _ ] => is_evar E; subst e
         end.