aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcourant2003-01-31 15:48:37 +0000
committercourant2003-01-31 15:48:37 +0000
commit41ddbe7e054054a0cd33048bd3defd1f68069885 (patch)
tree24644096caf6918c5bb967c7cccadb973d65cdba
parentf72b4a48fad32ea7b51766e1b32ed931f3346102 (diff)
*** empty log message ***
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3636 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--CHANGES2
-rw-r--r--kernel/names.ml2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 5c1ef12a91..b432e0ccdf 100644
--- a/CHANGES
+++ b/CHANGES
@@ -84,6 +84,8 @@ Tactic definitions
Tactics
+- Equality tactics (Rewrite, Reflexivity, Symmetry, Transitivity) now
+ understand JM equality
- Simpl and Change now apply to subterms also
- Double Induction now referring to hypotheses like "Intros until"
- "Inversion" now applies also on quantified hypotheses (naming as
diff --git a/kernel/names.ml b/kernel/names.ml
index dc665408c9..ddc592c094 100644
--- a/kernel/names.ml
+++ b/kernel/names.ml
@@ -113,7 +113,7 @@ let rec string_of_mp = function
| MPself uid -> string_of_uid uid
| MPdot (mp,l) -> string_of_mp mp ^ "." ^ string_of_label l
-(* we compare labels first if two MPdot's *)
+(* we compare labels first if both are MPdots *)
let rec mp_ord mp1 mp2 = match (mp1,mp2) with
MPdot(mp1,l1), MPdot(mp2,l2) ->
let c = Pervasives.compare l1 l2 in