diff options
author | Jason Gross <jgross@mit.edu> | 2018-03-07 11:17:49 -0500 |
---|---|---|
committer | Jason Gross <jgross@mit.edu> | 2018-03-07 11:17:49 -0500 |
commit | 6faef9c38104c09ce1a6e7db2589a746484ecfb4 (patch) | |
tree | e16299904b5c8ef5947042095e2ad5d8bf6579a9 /theories | |
parent | 144517d764f11b8b79e8f7adfeca0d075dd4ac19 (diff) |
Add empty compat file for Coq 8.8
This closes #6598
Diffstat (limited to 'theories')
-rw-r--r-- | theories/Compat/Coq87.v | 1 | ||||
-rw-r--r-- | theories/Compat/Coq88.v | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/theories/Compat/Coq87.v b/theories/Compat/Coq87.v index 89556ee75..dc1397aff 100644 --- a/theories/Compat/Coq87.v +++ b/theories/Compat/Coq87.v @@ -9,6 +9,7 @@ (************************************************************************) (** Compatibility file for making Coq act similar to Coq v8.7 *) +Require Export Coq.Compat.Coq88. (* In 8.7, omega wasn't taking advantage of local abbreviations, see bug 148 and PR#768. For adjusting this flag, we're forced to diff --git a/theories/Compat/Coq88.v b/theories/Compat/Coq88.v new file mode 100644 index 000000000..4142af05d --- /dev/null +++ b/theories/Compat/Coq88.v @@ -0,0 +1,11 @@ +(************************************************************************) +(* * The Coq Proof Assistant / The Coq Development Team *) +(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) +(* <O___,, * (see CREDITS file for the list of authors) *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(* * (see LICENSE file for the text of the license) *) +(************************************************************************) + +(** Compatibility file for making Coq act similar to Coq v8.8 *) |