aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-08-11 10:22:14 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-08-11 10:22:14 +0000
commit7222c18082e71cf91d63193682bad5e7a8a2124a (patch)
tree49d1ef4fac1831b726e174c468c5e79d22116495 /lib
parent079f1b21db4b183cd648613ee3e15c4746eb8057 (diff)
Option -v8 à coqtop lance coqtopnew; option -no-strict; option -no-proofs
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4254 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
-rw-r--r--lib/options.ml2
-rw-r--r--lib/options.mli2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/options.ml b/lib/options.ml
index 572539572..135673a82 100644
--- a/lib/options.ml
+++ b/lib/options.ml
@@ -34,7 +34,7 @@ let translate = ref false
let make_translate f = translate := f; v7 := f; ()
let do_translate () = !translate
let translate_file = ref false
-let p1 = ref true
+let translate_strict_impargs = ref true
(* True only when interning from pp*new.ml *)
let translate_syntax = ref false
diff --git a/lib/options.mli b/lib/options.mli
index db6ee1d5b..41e8dea84 100644
--- a/lib/options.mli
+++ b/lib/options.mli
@@ -32,8 +32,8 @@ val translate : bool ref
val make_translate : bool -> unit
val do_translate : unit -> bool
val translate_file : bool ref
-val p1 : bool ref
val translate_syntax : bool ref
+val translate_strict_impargs : bool ref
val make_silent : bool -> unit
val is_silent : unit -> bool