aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2003-12-24 17:10:31 +0000
committerherbelin2003-12-24 17:10:31 +0000
commit5273067333851c481992f60ca77861fe98c1a08c (patch)
tree0ee70f7dc2f0eb509327a6c31fce52cc702d78bf
parent18c922c5e61bc7effb23da06c08bbf7b07baa344 (diff)
Ajout delimiteur et arguments de scope pour list
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5145 85f007b7-540e-0410-9357-904b9bb8a0f7
-rwxr-xr-xtheories/Lists/List.v7
-rw-r--r--theories7/Lists/PolyList.v4
2 files changed, 10 insertions, 1 deletions
diff --git a/theories/Lists/List.v b/theories/Lists/List.v
index 1eb095c149..7a84ef8e78 100755
--- a/theories/Lists/List.v
+++ b/theories/Lists/List.v
@@ -647,4 +647,9 @@ Infix "::" := cons (at level 60, right associativity) : list_scope.
Infix "++" := app (right associativity, at level 60) : list_scope.
-Open Scope list_scope. \ No newline at end of file
+Open Scope list_scope.
+
+(** Declare Scope list_scope with key list *)
+Delimit Scope list_scope with list.
+
+Bind Scope list_scope with list.
diff --git a/theories7/Lists/PolyList.v b/theories7/Lists/PolyList.v
index 50b203d4e5..3ed0a73365 100644
--- a/theories7/Lists/PolyList.v
+++ b/theories7/Lists/PolyList.v
@@ -640,3 +640,7 @@ V8Infix "::" cons (at level 60, right associativity) : list_scope.
Infix RIGHTA 7 "^" app : list_scope V8only RIGHTA 60 "++".
Open Scope list_scope.
+
+Delimits Scope list_scope with list.
+
+Bind Scope list_scope with list.