aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/coqtop.mli
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-13 11:17:29 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-13 11:17:29 +0100
commit4f65dfb13d8bb395abf4aa405cae9ed529302a06 (patch)
tree3faa2bdcd321394097b1d8c04372a409b0835879 /toplevel/coqtop.mli
parent19d4ba5fa2ff8827f86d00df95a88e3f5cbdfd10 (diff)
parente5fbfbb162f95b30426fbe06f278c6d031abfd8a (diff)
Merge PR #6693: [toplevel] Refactor command line argument handling.
Diffstat (limited to 'toplevel/coqtop.mli')
-rw-r--r--toplevel/coqtop.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/toplevel/coqtop.mli b/toplevel/coqtop.mli
index 5b9494eaa..4d625a03d 100644
--- a/toplevel/coqtop.mli
+++ b/toplevel/coqtop.mli
@@ -11,7 +11,7 @@
state, load the files given on the command line, load the resource file,
produce the output state if any, and finally will launch [Coqloop.loop]. *)
-val init_toplevel : string list -> (Stm.doc * Stateid.t) option
+val init_toplevel : string list -> (Stm.doc * Stateid.t) option * Coqargs.coq_cmdopts
val start : unit -> unit
@@ -19,6 +19,6 @@ val start : unit -> unit
val drop_last_doc : Stm.doc option ref
(* For other toploops *)
-val toploop_init : (string list -> string list) ref
-val toploop_run : (Stm.doc -> unit) ref
+val toploop_init : (Coqargs.coq_cmdopts -> string list -> string list) ref
+val toploop_run : (Coqargs.coq_cmdopts -> Stm.doc -> unit) ref