aboutsummaryrefslogtreecommitdiff
path: root/lib/interface.mli
diff options
context:
space:
mode:
authoraspiwack2013-11-02 15:39:54 +0000
committeraspiwack2013-11-02 15:39:54 +0000
commitc9504af26647ab745dc22811a2db8058e0b66632 (patch)
tree753c2029810002b23946636a3add74aacf86566c /lib/interface.mli
parent8d68ee674daa5deaa327b80e75f01876ef6ea9a0 (diff)
Adds a shelve tactic.
The shelve tactic puts all the focused goals out of sight. They can be later recalled by the Unshelve command. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@17013 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/interface.mli')
-rw-r--r--lib/interface.mli2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/interface.mli b/lib/interface.mli
index a8e3d72bd1..d190272569 100644
--- a/lib/interface.mli
+++ b/lib/interface.mli
@@ -44,6 +44,8 @@ type goals = {
(** List of the focussed goals *)
bg_goals : (goal list * goal list) list;
(** Zipper representing the unfocussed background goals *)
+ shelved_goals : goal list;
+ (** List of the goals on the shelf. *)
}
type hint = (string * string) list