aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorherbelin2002-01-18 15:27:45 +0000
committerherbelin2002-01-18 15:27:45 +0000
commit96a51c9f3c1721b545c91b18e4d5af2b0864f165 (patch)
treea70646953ea0b0a4cb27726832f37fc3bf6e183e /lib
parentf84cc22a42f3563754dbeaa44fae88ab5fa6b198 (diff)
Le chargement des coercions est nécessaire même si le module n'est pas ouvert
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2409 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
-rw-r--r--lib/options.ml10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/options.ml b/lib/options.ml
index a8adcdb74e..8d49d6b759 100644
--- a/lib/options.ml
+++ b/lib/options.ml
@@ -49,16 +49,6 @@ let set_print_hyps_limit n = print_hyps_limit := Some n
let unset_print_hyps_limit () = print_hyps_limit := None
let print_hyps_limit () = !print_hyps_limit
-let mes_ambig = ref true
-let make_mes_ambig flag = mes_ambig:=flag
-let is_mes_ambig() = !mes_ambig
-
-let without_mes_ambig f x =
- let old = is_mes_ambig() in
- try make_mes_ambig false;
- let rslt = f x in (make_mes_ambig old; rslt)
- with e -> (make_mes_ambig old; raise e)
-
(* A list of the areas of the system where "unsafe" operation
* has been requested *)
let unsafe_set = ref Stringset.empty