From 999cd7ee09451493a10f8f840ef3be9e7b84e033 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Mon, 3 Apr 2017 12:29:07 -0400 Subject: Fix parsing issue --- src/Util/Tactics/UnifyAbstractReflexivity.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Util/Tactics') diff --git a/src/Util/Tactics/UnifyAbstractReflexivity.v b/src/Util/Tactics/UnifyAbstractReflexivity.v index 687518377..e3e7fc77b 100644 --- a/src/Util/Tactics/UnifyAbstractReflexivity.v +++ b/src/Util/Tactics/UnifyAbstractReflexivity.v @@ -15,10 +15,10 @@ Ltac unify_transformed_rhs_abstract_tac transform_rhs unify exact_no_check := lazymatch goal with | [ |- ?LHS = ?RHS ] => tryif has_evar LHS - then let RHS' := transform_rhs RHS in - unify LHS RHS'; clear; - abstract exact_no_check (eq_refl RHS') - else abstract exact_no_check (eq_refl RHS) + then (let RHS' := transform_rhs RHS in + unify LHS RHS'; clear; + abstract exact_no_check (eq_refl RHS')) + else (abstract exact_no_check (eq_refl RHS)) end. Ltac idterm x := x. -- cgit v1.2.3