aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Lists/List.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-09 14:40:04 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-05-09 14:40:04 +0000
commit3dc64aa7b1d8e2d7388b5386cd3bc4387498c216 (patch)
tree3a34b8a4f0f12e9081bb709eaf13bc5cb55aa2aa /theories/Lists/List.v
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 'theories/Lists/List.v')
-rw-r--r--theories/Lists/List.v4
1 files changed, 0 insertions, 4 deletions
diff --git a/theories/Lists/List.v b/theories/Lists/List.v
index 2cce009a2..f1bcc792d 100644
--- a/theories/Lists/List.v
+++ b/theories/Lists/List.v
@@ -82,10 +82,6 @@ Implicit Arguments nil [A].
Infix "::" := cons (at level 60, right associativity) : list_scope.
Infix "++" := app (right associativity, at level 60) : list_scope.
-Notation "[ ]" := nil : list_scope.
-Notation "[ x ]" := (cons x nil) : list_scope.
-Notation "[ x ; y ; .. ; z ]" := (cons x (cons y .. (cons z nil) .. )) : list_scope.
-
Open Scope list_scope.
Delimit Scope list_scope with list.