diff options
| author | aspiwack | 2013-11-02 15:38:32 +0000 |
|---|---|---|
| committer | aspiwack | 2013-11-02 15:38:32 +0000 |
| commit | 00d30f5330f4f1dd487d5754a0fb855a784efbf0 (patch) | |
| tree | def0f4e640f71192748a2e964b92b9418970a98d /proofs/proofview.mli | |
| parent | ea879916e09cd19287c831152d7ae2a84c61f4b0 (diff) | |
Tachmach.New is now in Proofview.Goal.enter style.
As a result the use of the glist-style interface for manipulating goals has almost been removed.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@17001 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/proofview.mli')
| -rw-r--r-- | proofs/proofview.mli | 4 |
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 |
