summaryrefslogtreecommitdiff
path: root/proofs/decl_mode.ml
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2007-02-13 13:48:12 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2007-02-13 13:48:12 +0000
commit7f076db2a924377e9de3f9a6d838b8c44ed2e16d (patch)
treee075c526532a227c83d951c9dff8c944ea0c4d15 /proofs/decl_mode.ml
parent2a14f39fdfa80b021227396b22e38ed7c35356df (diff)
parent55ce117e8083477593cf1ff2e51a3641c7973830 (diff)
Merge commit 'upstream/8.1+dfsg' into 8.1
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"