aboutsummaryrefslogtreecommitdiff
path: root/toplevel/interface.mli
diff options
context:
space:
mode:
Diffstat (limited to 'toplevel/interface.mli')
-rw-r--r--toplevel/interface.mli10
1 files changed, 8 insertions, 2 deletions
diff --git a/toplevel/interface.mli b/toplevel/interface.mli
index e1410f5bc9..6040605504 100644
--- a/toplevel/interface.mli
+++ b/toplevel/interface.mli
@@ -27,10 +27,16 @@ type evar = {
}
type status = {
- status_path : string option;
+ status_path : string list;
(** Module path of the current proof *)
status_proofname : string option;
- (** Current proof name. [None] if no proof is in progress *)
+ (** Current proof name. [None] if no focussed proof is in progress *)
+ status_allproofs : string list;
+ (** List of all pending proofs. Order is not significant *)
+ status_statenum : int;
+ (** A unique id describing the state of coqtop *)
+ status_proofnum : int;
+ (** An id describing the state of the current proof. *)
}
type goals = {