aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/logic.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-12-13 14:49:35 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-12-13 14:49:35 +0000
commit989d7d5f4d3d023704935f2db49090b9ac4b2e13 (patch)
treec1f73dd93200d63e3373cf6db354d4aacd11dc68 /proofs/logic.ml
parentde08c197502d6e7c7c43c3b16f3bea9c9e504662 (diff)
Renamed Option.Misc.compare to the more uniform Option.equal.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16063 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/logic.ml')
-rw-r--r--proofs/logic.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/logic.ml b/proofs/logic.ml
index 725f16b8e..b8341f1aa 100644
--- a/proofs/logic.ml
+++ b/proofs/logic.ml
@@ -472,7 +472,7 @@ let convert_hyp sign sigma (id,b,bt as d) =
let env = Global.env_of_context sign in
if !check && not (is_conv env sigma bt ct) then
error ("Incorrect change of the type of "^(string_of_id id)^".");
- if !check && not (Option.Misc.compare (is_conv env sigma) b c) then
+ if !check && not (Option.equal (is_conv env sigma) b c) then
error ("Incorrect change of the body of "^(string_of_id id)^".");
if !check then reorder := check_decl_position env sign d;
d) in