aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/firstorder
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-19 11:12:52 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-19 11:12:52 +0100
commiteaff61e0a19fcf6ebc2a9a8ae17327413274c67b (patch)
treeacbbc416ad78bf8520893405c04855c600909576 /plugins/firstorder
parent073b92396a68be30f77c80960a58ca562bb01f49 (diff)
parent68935660fbfdec2e357e123ed999073ed3b8fc26 (diff)
Merge PR #6771: [engine] Remove ghost parameter from `Proofview.Goal.t`
Diffstat (limited to 'plugins/firstorder')
-rw-r--r--plugins/firstorder/ground.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/firstorder/ground.ml b/plugins/firstorder/ground.ml
index d46201335..09147d606 100644
--- a/plugins/firstorder/ground.ml
+++ b/plugins/firstorder/ground.ml
@@ -37,7 +37,7 @@ let ground_tac solver startseq =
let () =
if Tacinterp.get_debug()=Tactic_debug.DebugOn 0
then
- let gl = { Evd.it = Proofview.Goal.goal (Proofview.Goal.assume gl); sigma = project gl } in
+ let gl = { Evd.it = Proofview.Goal.goal gl; sigma = project gl } in
Feedback.msg_debug (Printer.pr_goal gl)
in
tclORELSE (axiom_tac seq.gl seq)