diff options
| author | herbelin | 2002-11-05 16:58:54 +0000 |
|---|---|---|
| committer | herbelin | 2002-11-05 16:58:54 +0000 |
| commit | 3667473c47297bb4b5adddf99b58b0000da729e6 (patch) | |
| tree | 3f3770b79279d0996e107618475b5966bceab4f1 /lib | |
| parent | ebec008ec9654700a41ade17f1a4c9fd87aea7e6 (diff) | |
Nouvelle option -xml à coqtop pour compiler un développement en
l'exportant au format xml
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3211 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/options.ml | 2 | ||||
| -rw-r--r-- | lib/options.mli | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/options.ml b/lib/options.ml index b60210fdef..a47a0bea87 100644 --- a/lib/options.ml +++ b/lib/options.ml @@ -22,6 +22,8 @@ let emacs_str s = if !print_emacs then s else "" let term_quality = ref false +let xml_export = ref false + (* Silent / Verbose *) let silent = ref false let make_silent flag = silent := flag; () diff --git a/lib/options.mli b/lib/options.mli index 53e796f9a9..f990647473 100644 --- a/lib/options.mli +++ b/lib/options.mli @@ -21,6 +21,8 @@ val emacs_str : string -> string val term_quality : bool ref +val xml_export : bool ref + val make_silent : bool -> unit val is_silent : unit -> bool val is_verbose : unit -> bool |
