Skip to content
Snippets Groups Projects
Commit 29b31814 authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'ci/ralf/no-unicode-hacks' into 'master'

get rid of the empty-unicode-space hacks

See merge request !59
parents 411cd5dc fab93130
No related branches found
No related tags found
No related merge requests found
...@@ -33,9 +33,3 @@ iris-coq8.6.1: ...@@ -33,9 +33,3 @@ iris-coq8.6.1:
paths: paths:
- build-time.txt - build-time.txt
- build-env.txt - build-env.txt
iris-coq8.6:
<<: *template
variables:
COQ_VERSION: "8.6"
SSR_VERSION: "1.6.1"
...@@ -6,7 +6,7 @@ This is the Coq development of the [Iris Project](http://iris-project.org). ...@@ -6,7 +6,7 @@ This is the Coq development of the [Iris Project](http://iris-project.org).
This version is known to compile with: This version is known to compile with:
- Coq 8.6 - Coq 8.6.1
- Ssreflect 1.6.1 - Ssreflect 1.6.1
- A development version of [std++](https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp) - A development version of [std++](https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp)
......
...@@ -13,7 +13,7 @@ build: [ ...@@ -13,7 +13,7 @@ build: [
install: [make "install"] install: [make "install"]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/iris'" ] remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/iris'" ]
depends: [ depends: [
"coq" { (>= "8.6" & < "8.7~") } # replace with (= "dev") if you want to test against a development version of Coq "coq" { (>= "8.6.1" & < "8.7~") } # replace with (= "dev") if you want to test against a development version of Coq
"coq-mathcomp-ssreflect" { ((>= "1.6.1" & < "1.7~") | (= "dev")) } "coq-mathcomp-ssreflect" { ((>= "1.6.1" & < "1.7~") | (= "dev")) }
"coq-stdpp" "coq-stdpp"
] ]
...@@ -7,7 +7,7 @@ Arguments Envs _ _%proof_scope _%proof_scope. ...@@ -7,7 +7,7 @@ Arguments Envs _ _%proof_scope _%proof_scope.
Arguments Enil {_}. Arguments Enil {_}.
Arguments Esnoc {_} _%proof_scope _%string _%uPred_scope. Arguments Esnoc {_} _%proof_scope _%string _%uPred_scope.
Notation "" := Enil (format "", only printing) : proof_scope. Notation "" := Enil (format "", only printing) : proof_scope.
Notation "Γ H : P" := (Esnoc Γ H P) Notation "Γ H : P" := (Esnoc Γ H P)
(at level 1, P at level 200, (at level 1, P at level 200,
left associativity, format "Γ H : P '//'", only printing) : proof_scope. left associativity, format "Γ H : P '//'", only printing) : proof_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment