diff --git a/theories/tactics.v b/theories/tactics.v index 5b68110bc873473c438eefc94b3803d8216f02ef..c431b46860b3c8a2e929e0a65eb3df8794e3667e 100644 --- a/theories/tactics.v +++ b/theories/tactics.v @@ -303,7 +303,8 @@ Tactic Notation "feed" "destruct" constr(H) "as" simple_intropattern(IP) := It will search for the first subterm of the goal matching [pat], and then call [tac] with that subterm. *) Ltac find_pat pat tac := - match goal with |- context [?x] => unify pat x; tac x || fail 2 + match goal with |- context [?x] => + unify pat x; tryif tac x then idtac else fail 2 end. (** Coq's [firstorder] tactic fails or loops on rather small goals already. In