aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/xml/proof2aproof.ml
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/xml/proof2aproof.ml')
-rw-r--r--contrib/xml/proof2aproof.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/xml/proof2aproof.ml b/contrib/xml/proof2aproof.ml
index 80b45cc6d..03d45828d 100644
--- a/contrib/xml/proof2aproof.ml
+++ b/contrib/xml/proof2aproof.ml
@@ -48,7 +48,7 @@ let nf_evar sigma ~preserve =
(* Warning: statuses, goals, prim_rules and tactic_exprs are not unshared! *)
let rec unshare_proof_tree =
let module PT = Proof_type in
- function {PT.status = status ; PT.goal = goal ; PT.ref = ref} ->
+ function {PT.open_subgoals = status ; PT.goal = goal ; PT.ref = ref} ->
let unshared_ref =
match ref with
None -> None
@@ -62,7 +62,7 @@ let rec unshare_proof_tree =
in
Some (unshared_rule, List.map unshare_proof_tree pfs)
in
- {PT.status = status ; PT.goal = goal ; PT.ref = unshared_ref}
+ {PT.open_subgoals = status ; PT.goal = goal ; PT.ref = unshared_ref}
;;
module ProofTreeHash =