aboutsummaryrefslogtreecommitdiff
path: root/lib/interface.mli
diff options
context:
space:
mode:
authorppedrot2012-05-02 16:01:05 +0000
committerppedrot2012-05-02 16:01:05 +0000
commitc64fe271b2ad1bb748257f84f0de438755593966 (patch)
tree882a41cd4a20447cc0590ec498423b75610dedee /lib/interface.mli
parent795903ab8fc07ac5c07e63211ae40a65ff8d4dc8 (diff)
Added an interface call to exit Coqtop nicely.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15263 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/interface.mli')
-rw-r--r--lib/interface.mli16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/interface.mli b/lib/interface.mli
index f2aba72e9d..a72e5b7b0f 100644
--- a/lib/interface.mli
+++ b/lib/interface.mli
@@ -75,19 +75,3 @@ type location = (int * int) option (* start and end of the error *)
type 'a value =
| Good of 'a
| Fail of (location * string)
-
-(** * The structure that coqtop should implement *)
-
-type handler = {
- interp : raw * verbose * string -> string;
- rewind : int -> int;
- goals : unit -> goals option;
- evars : unit -> evar list option;
- hints : unit -> (hint list * hint) option;
- status : unit -> status;
- get_options : unit -> (option_name * option_state) list;
- set_options : (option_name * option_value) list -> unit;
- inloadpath : string -> bool;
- mkcases : string -> string list list;
- handle_exn : exn -> location * string;
-}