aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories
diff options
context:
space:
mode:
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 0aee1d4ca..9a0406d59 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 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.