aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorherbelin2008-05-09 14:40:04 +0000
committerherbelin2008-05-09 14:40:04 +0000
commit3dc64aa7b1d8e2d7388b5386cd3bc4387498c216 (patch)
tree3a34b8a4f0f12e9081bb709eaf13bc5cb55aa2aa /theories
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')
-rw-r--r--theories/Init/Notations.v2
-rw-r--r--theories/Lists/List.v4
2 files changed, 0 insertions, 6 deletions
diff --git a/theories/Init/Notations.v b/theories/Init/Notations.v
index 0aee1d4ca7..9a0406d591 100644
--- a/theories/Init/Notations.v
+++ b/theories/Init/Notations.v
@@ -71,8 +71,6 @@ Reserved Notation "{ x : A | P & Q }" (at level 0, x at level 99).
Reserved Notation "{ x : A & P }" (at level 0, x at level 99).
Reserved Notation "{ x : A & P & Q }" (at level 0, x at level 99).
-Reserved Notation "[ x ]" (at level 0).
-
Delimit Scope type_scope with type.
Delimit Scope core_scope with core.
diff --git a/theories/Lists/List.v b/theories/Lists/List.v
index 2cce009a27..f1bcc792d6 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.