aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/vernac.mli
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-03-13 00:01:01 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-03-13 00:01:01 +0000
commite01597af2cd14d268927942c53dcf3aebbc2be34 (patch)
tree86bbd8821f5572778e042d57bffe5611e5fae01c /toplevel/vernac.mli
parent033fed4d6788be791bb1c980f3cddc10827d6318 (diff)
Vernac+Toplevel: get rid of DuringVernacInterp
This meta-exception was already almost unused, just to distinguish exceptions during parsing or interp. Some code cleanup btw git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16293 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel/vernac.mli')
-rw-r--r--toplevel/vernac.mli2
1 files changed, 0 insertions, 2 deletions
diff --git a/toplevel/vernac.mli b/toplevel/vernac.mli
index 8f1fbc54f..e0ca6db46 100644
--- a/toplevel/vernac.mli
+++ b/toplevel/vernac.mli
@@ -17,7 +17,6 @@ val parse_sentence : Pcoq.Gram.parsable * in_channel option ->
(** Reads and executes vernac commands from a stream.
The boolean [just_parsing] disables interpretation of commands. *)
-exception DuringCommandInterp of Loc.t * exn
exception End_of_input
val just_parsing : bool ref
@@ -30,7 +29,6 @@ val just_parsing : bool ref
(* spiwack: return value: [true] if safe (general case), [false] if
unsafe (like [Admitted]). *)
val eval_expr : ?preserving:bool -> Loc.t * Vernacexpr.vernac_expr -> bool
-val raw_do_vernac : Pcoq.Gram.parsable -> bool
(** Set XML hooks *)
val set_xml_start_library : (unit -> unit) -> unit