summaryrefslogtreecommitdiff
path: root/proofs/decl_mode.ml
diff options
context:
space:
mode:
Diffstat (limited to 'proofs/decl_mode.ml')
-rw-r--r--proofs/decl_mode.ml9
1 files changed, 4 insertions, 5 deletions
diff --git a/proofs/decl_mode.ml b/proofs/decl_mode.ml
index 094c5625..8d8fb745 100644
--- a/proofs/decl_mode.ml
+++ b/proofs/decl_mode.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id:$ *)
+(* $Id$ *)
open Names
open Term
@@ -67,11 +67,10 @@ type stack_info =
| Focus_claim
type pm_info =
- { pm_last: Names.name (* anonymous if none *);
- pm_hyps: Idset.t;
- pm_partial_goal : constr ; (* partial goal construction *)
+ { 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 }
+ pm_stack : stack_info list}
let pm_in,pm_out = Dyn.create "pm_info"