aboutsummaryrefslogtreecommitdiff
path: root/proofs
diff options
context:
space:
mode:
Diffstat (limited to 'proofs')
-rw-r--r--proofs/decl_mode.ml3
-rw-r--r--proofs/decl_mode.mli3
2 files changed, 2 insertions, 4 deletions
diff --git a/proofs/decl_mode.ml b/proofs/decl_mode.ml
index 094c562532..2e54f37438 100644
--- a/proofs/decl_mode.ml
+++ b/proofs/decl_mode.ml
@@ -67,8 +67,7 @@ type stack_info =
| Focus_claim
type pm_info =
- { pm_last: Names.name (* anonymous if none *);
- pm_hyps: Idset.t;
+ { pm_last: (Names.identifier * bool) option (* anonymous if none *);
pm_partial_goal : constr ; (* partial goal construction *)
pm_subgoals : (metavariable*constr) list;
pm_stack : stack_info list }
diff --git a/proofs/decl_mode.mli b/proofs/decl_mode.mli
index 0dd1cb33c3..4a8aa85f12 100644
--- a/proofs/decl_mode.mli
+++ b/proofs/decl_mode.mli
@@ -56,8 +56,7 @@ type stack_info =
| Focus_claim
type pm_info =
- { pm_last: Names.name (* anonymous if none *);
- pm_hyps: Idset.t;
+ { pm_last: (Names.identifier * bool) option (* anonymous if none *);
pm_partial_goal : constr ; (* partial goal construction *)
pm_subgoals : (metavariable*constr) list;
pm_stack : stack_info list }