diff options
Diffstat (limited to 'theories/Init')
| -rw-r--r-- | theories/Init/Tactics.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Init/Tactics.v b/theories/Init/Tactics.v index 89a319f09f..f221aa8b42 100644 --- a/theories/Init/Tactics.v +++ b/theories/Init/Tactics.v @@ -45,7 +45,7 @@ Ltac f_equal := let des := destruct 1 || intro in let r := try reflexivity in match goal with - | |- ?f ?a = ?f' ?a' => cut (a=a'); des; r + | |- ?f ?a = ?f' ?a' => cut (a=a'); [des; r|r] | |- ?f ?a ?b = ?f' ?a' ?b' => cut (b=b');[cut (a=a');[do 2 des; r|r]|r] | |- ?f ?a ?b ?c = ?f' ?a' ?b' ?c'=> |
