aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Andres Erbsen <andreser@mit.edu>2016-06-20 14:28:02 -0400
committerGravatar Andres Erbsen <andreser@mit.edu>2016-06-20 14:28:02 -0400
commit1a5130702303e2843ab458e2566bef293c6947cd (patch)
tree043153c61175d372f7a92c495d7189e64b556ce3 /src
parent4bb42c36190c360f8d2fecc865ed9e822deddf26 (diff)
parenthesize Ltac [constr:] arguments
Diffstat (limited to 'src')
-rw-r--r--src/Tactics/Nsatz.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Tactics/Nsatz.v b/src/Tactics/Nsatz.v
index 3eb3647a1..8fa8c4a86 100644
--- a/src/Tactics/Nsatz.v
+++ b/src/Tactics/Nsatz.v
@@ -25,7 +25,7 @@ Ltac nsatz_reify_equations eq zero :=
lazymatch (eval red in (Ncring_tac.list_reifyl (lterm:=lb))) with
(?variables, ?le) =>
lazymatch (eval compute in (List.rev le)) with
- | ?reified_goal::?reified_givens => constr:(variables, reified_givens, reified_goal)
+ | ?reified_goal::?reified_givens => constr:((variables, reified_givens, reified_goal))
end
end.
@@ -56,7 +56,7 @@ Ltac nsatz_compute_get_leading_coefficient :=
Ltac nsatz_compute_get_certificate :=
lazymatch goal with
- |- Logic.eq ((?a :: _ :: ?b) :: ?c) _ -> _ => constr:(c,b)
+ |- Logic.eq ((?a :: _ :: ?b) :: ?c) _ -> _ => constr:((c,b))
end.
Ltac nsatz_rewrite_and_revert domain :=