aboutsummaryrefslogtreecommitdiff
path: root/proofs/pfedit.ml
diff options
context:
space:
mode:
authorppedrot2012-11-25 17:39:12 +0000
committerppedrot2012-11-25 17:39:12 +0000
commitde5bd6a09e2323faf4ac4b7576d55c3d2cb94ba7 (patch)
tree9814cef64f85ad6921b51fba5e489d9bd6cfa507 /proofs/pfedit.ml
parentb35582012e9f7923ca2e55bfbfae9215770f8fbd (diff)
Monomorphization (proof)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16002 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/pfedit.ml')
-rw-r--r--proofs/pfedit.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/pfedit.ml b/proofs/pfedit.ml
index 962061f34b..44c5d7f305 100644
--- a/proofs/pfedit.ml
+++ b/proofs/pfedit.ml
@@ -45,7 +45,7 @@ let current_proof_depth () =
let undo_todepth n =
try
undo ((current_proof_depth ()) - n )
- with Proof_global.NoCurrentProof when n=0 -> ()
+ with Proof_global.NoCurrentProof when Int.equal n 0 -> ()
let start_proof id str hyps c ?init_tac ?compute_guard hook =
let goals = [ (Global.env_of_context hyps , c) ] in