Skip to content
Snippets Groups Projects
Commit a051dd3c authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Make `iEval` fail in case it is not a proof mode goal.

parent 467b118b
No related branches found
No related tags found
No related merge requests found
......@@ -82,8 +82,8 @@ Ltac iStartProof :=
(** * Simplification *)
Tactic Notation "iEval" tactic(t) :=
try iStartProof;
try (eapply tac_eval; [t; reflexivity|]).
iStartProof;
eapply tac_eval; [t; reflexivity|].
Tactic Notation "iSimpl" := iEval simpl.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment