aboutsummaryrefslogtreecommitdiff
path: root/proofs/proofview.mli
diff options
context:
space:
mode:
Diffstat (limited to 'proofs/proofview.mli')
-rw-r--r--proofs/proofview.mli4
1 files changed, 3 insertions, 1 deletions
diff --git a/proofs/proofview.mli b/proofs/proofview.mli
index 6d5e9d75d0..5051e195a5 100644
--- a/proofs/proofview.mli
+++ b/proofs/proofview.mli
@@ -293,13 +293,15 @@ module Goal : sig
(* [lift_sensitive s] returns the list corresponding to the evaluation
of [s] on each of the focused goals *)
val lift : 'a Goal.sensitive -> 'a glist tactic
-
(* [lift (Goal.return x)] *)
val return : 'a -> 'a glist tactic
val enter : (t -> unit tactic) -> unit tactic
val enterl : (t -> 'a glist tactic) -> 'a glist tactic
+
+ (* compatibility: avoid if possible *)
+ val goal : t -> Goal.goal
end