aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorherbelin2003-12-24 17:10:31 +0000
committerherbelin2003-12-24 17:10:31 +0000
commit5273067333851c481992f60ca77861fe98c1a08c (patch)
tree0ee70f7dc2f0eb509327a6c31fce52cc702d78bf /theories
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
Diffstat (limited to 'theories')
-rwxr-xr-xtheories/Lists/List.v7
1 files changed, 6 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.