aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--toplevel/coqtop.ml6
2 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d48aff51..dd0e68e4f 100644
--- a/Makefile
+++ b/Makefile
@@ -1258,7 +1258,7 @@ newcontrib:: $(CONTRIBVO:%.vo=new%.vo) $(CONTRIBCMO)
COQTOPNEW=bin/coqtopnew.$(BEST)$(EXE)
NEWCMX=$(HIGHPARSINGNEW:.cmo=.cmx)
-NEWOPTS=-boot $(GLOB) -R newtheories Coq -R newcontrib Coq
+NEWOPTS=-boot $(GLOB) -v8 -R newtheories Coq -R newcontrib Coq
NEWCOQBARE=$(COQTOPNEW) $(NEWOPTS) -nois
NEWCOQ=$(COQTOPNEW) $(NEWOPTS) -is states/initialnew.coq
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml
index 99c1bed6f..86cbe3654 100644
--- a/toplevel/coqtop.ml
+++ b/toplevel/coqtop.ml
@@ -202,7 +202,11 @@ let parse_args is_ide =
| "-v7" :: rem -> Options.v7 := true; parse rem
- | "-v8" :: rem -> Options.v7 := false; parse rem
+ | "-v8" :: rem ->
+ Options.v7 := false;
+ (* implicites stricts par défaut en v8 *)
+ Impargs.make_strict_implicit_args true;
+ parse rem
| s :: rem ->
if is_ide && Filename.check_suffix s ".v" then begin