aboutsummaryrefslogtreecommitdiff
path: root/theories/Sorting
diff options
context:
space:
mode:
authorherbelin2002-04-17 11:30:23 +0000
committerherbelin2002-04-17 11:30:23 +0000
commitcc1be0bf512b421336e81099aa6906ca47e4257a (patch)
treec25fa8ed965729d7a85efa3b3292fdf7f442963d /theories/Sorting
parentebf9aa9f97ef0d49ed1b799c9213f78efad4fec7 (diff)
Uniformisation (Qed/Save et Implicits Arguments)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2650 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Sorting')
-rw-r--r--theories/Sorting/Permutation.v4
-rw-r--r--theories/Sorting/Sorting.v4
2 files changed, 4 insertions, 4 deletions
diff --git a/theories/Sorting/Permutation.v b/theories/Sorting/Permutation.v
index 5bf3f6273b..3702387a7f 100644
--- a/theories/Sorting/Permutation.v
+++ b/theories/Sorting/Permutation.v
@@ -12,7 +12,7 @@ Require Relations.
Require PolyList.
Require Multiset.
-Implicit Arguments On.
+Set Implicit Arguments.
Section defs.
@@ -107,5 +107,5 @@ Qed.
Hints Resolve permut_middle.
End defs.
-Implicit Arguments Off.
+Unset Implicit Arguments.
diff --git a/theories/Sorting/Sorting.v b/theories/Sorting/Sorting.v
index 77407c9efd..cad4e20198 100644
--- a/theories/Sorting/Sorting.v
+++ b/theories/Sorting/Sorting.v
@@ -13,7 +13,7 @@ Require Multiset.
Require Permutation.
Require Relations.
-Implicit Arguments On.
+Set Implicit Arguments.
Section defs.
@@ -112,6 +112,6 @@ Qed.
End defs.
-Implicit Arguments Off.
+Unset Implicit Arguments.
Hint constr_sort : datatypes v62 := Constructors sort.
Hint constr_lelistA : datatypes v62 := Constructors lelistA.