aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/coq.ml
diff options
context:
space:
mode:
authorGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-12-06 17:36:14 +0000
committerGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-12-06 17:36:14 +0000
commita59b644de4234fb7fe3fce28284979091f257130 (patch)
treed5d8ff609aa9e4e582a06ca865a94eee1edbf182 /ide/coq.ml
parent3e3fa18a066feae44c10fc6e072059f4e9914656 (diff)
Plus de combinateurs sont passés de Util à Option. Le module Options
devient Flags. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10348 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/coq.ml')
-rw-r--r--ide/coq.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/ide/coq.ml b/ide/coq.ml
index 50536491c..128717acf 100644
--- a/ide/coq.ml
+++ b/ide/coq.ml
@@ -43,7 +43,7 @@ let init () =
Problem: should not hide "xx is assumed"
messages *)
(**)
- Options.make_silent true;
+ Flags.make_silent true;
(**)
Coqtop.init_ide ()
@@ -156,11 +156,11 @@ let interp verbosely s =
| VernacExtend("Extraction", _)
| VernacExtend("ExtractionLibrary",_)
| VernacExtend("RecursiveExtractionLibrary",_)
- -> Options.make_silent (not verbosely)
+ -> Flags.make_silent (not verbosely)
| _ -> ()
end;
Vernac.raw_do_vernac (Pcoq.Gram.parsable (Stream.of_string s));
- Options.make_silent true;
+ Flags.make_silent true;
prerr_endline ("...Done with interp of : "^s);
last