aboutsummaryrefslogtreecommitdiff
path: root/contrib/ring
diff options
context:
space:
mode:
authorherbelin2008-05-09 14:40:04 +0000
committerherbelin2008-05-09 14:40:04 +0000
commit3dc64aa7b1d8e2d7388b5386cd3bc4387498c216 (patch)
tree3a34b8a4f0f12e9081bb709eaf13bc5cb55aa2aa /contrib/ring
parent35e9448d23100b571db332be1289c4f74c4519d6 (diff)
Backtrack sur la mise à disposition en standard de la notation [ x ; ... ; y ]
pour les listes (trop contraignant) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10913 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/ring')
-rw-r--r--contrib/ring/Ring_normalize.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ring/Ring_normalize.v b/contrib/ring/Ring_normalize.v
index bb3cfc5a8a..ad1cc5cf10 100644
--- a/contrib/ring/Ring_normalize.v
+++ b/contrib/ring/Ring_normalize.v
@@ -897,6 +897,6 @@ End rings.
Infix "+" := Pplus : ring_scope.
Infix "*" := Pmult : ring_scope.
Notation "- x" := (Popp x) : ring_scope.
-Notation "[ x ]" := (Pvar x) : ring_scope.
+Notation "[ x ]" := (Pvar x) (at level 0) : ring_scope.
Delimit Scope ring_scope with ring.