From 9a1eb2f4fefcc52f56785f20831e854bb626ae95 Mon Sep 17 00:00:00 2001 From: Maxime Dénès Date: Wed, 6 Jul 2016 11:42:35 +0200 Subject: Fix #4793: Coq 8.6 should accept -compat 8.6 We also add a Coq86.v compat file. --- theories/Compat/Coq85.v | 4 ++++ theories/Compat/Coq86.v | 9 +++++++++ theories/Compat/vo.itarget | 1 + 3 files changed, 14 insertions(+) create mode 100644 theories/Compat/Coq86.v (limited to 'theories/Compat') diff --git a/theories/Compat/Coq85.v b/theories/Compat/Coq85.v index 1e30ab919..54621cc1c 100644 --- a/theories/Compat/Coq85.v +++ b/theories/Compat/Coq85.v @@ -8,6 +8,10 @@ (** Compatibility file for making Coq act similar to Coq v8.5 *) +(** Any compatibility changes to make future versions of Coq behave like Coq 8.6 + are likely needed to make them behave like Coq 8.5. *) +Require Export Coq.Compat.Coq86. + (* In 8.5, "intros [|]", taken e.g. on a goal "A\/B->C", does not behave as "intros [H|H]" but leave instead hypotheses quantified in the goal, here producing subgoals A->C and B->C. *) diff --git a/theories/Compat/Coq86.v b/theories/Compat/Coq86.v new file mode 100644 index 000000000..6952fdf19 --- /dev/null +++ b/theories/Compat/Coq86.v @@ -0,0 +1,9 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(*