diff options
| author | Jason Gross | 2016-06-11 18:09:01 -0400 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-09-26 23:43:50 +0200 |
| commit | f8745b1dbc87a8fee4943a91f517dc2afcd7804b (patch) | |
| tree | 87db013524bd5223da6df924d6d283829cb5ea02 /theories | |
| parent | 7bc04ff2cc9d511c4b8552a3e5f9ad416917fb95 (diff) | |
Unbreak Ltac [ | .. | ] notation in -compat 8.5
Importing VectorNotations breaks `; []`. So we make sure it's not
imported by defualt. Some files might be required to `Import
VectorDef.VectorNotations` rather than just `Import VectorNotations`.
Diffstat (limited to 'theories')
| -rw-r--r-- | theories/Compat/Coq85.v | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/theories/Compat/Coq85.v b/theories/Compat/Coq85.v index 6e495b05c6..54aeeaa114 100644 --- a/theories/Compat/Coq85.v +++ b/theories/Compat/Coq85.v @@ -32,6 +32,7 @@ Require Coq.Vectors.VectorDef. Module Export Coq. Module Export Vectors. Module VectorDef. +Export Coq.Vectors.VectorDef. Module VectorNotations. Export Coq.Vectors.VectorDef.VectorNotations. Notation "[]" := (VectorDef.nil _) : vector_scope. @@ -39,5 +40,3 @@ End VectorNotations. End VectorDef. End Vectors. End Coq. -Export Vectors.VectorDef.VectorNotations. -Close Scope vector_scope. (* vector_scope is not opened by default *) |
