aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/goal.ml
diff options
context:
space:
mode:
authorGravatar Arnaud Spiwack <arnaud@spiwack.net>2014-10-13 12:10:29 +0200
committerGravatar Arnaud Spiwack <arnaud@spiwack.net>2014-10-16 10:23:29 +0200
commite86f8ef50b940435da2b238792dffd0f9755a78d (patch)
tree2a85f7139ec8c4751ae0f79ddd09e9507181940b /proofs/goal.ml
parentba372c87f7a21cbc8bfcd4495bd59a04a63f7281 (diff)
Goal: remove dead code.
Diffstat (limited to 'proofs/goal.ml')
-rw-r--r--proofs/goal.ml6
1 files changed, 0 insertions, 6 deletions
diff --git a/proofs/goal.ml b/proofs/goal.ml
index ea0d534c1..9c79c8c81 100644
--- a/proofs/goal.ml
+++ b/proofs/goal.ml
@@ -151,12 +151,6 @@ let eval t env defs gl =
let r = t env rdefs gl info in
( r , !rdefs )
-(* monadic bind on sensitive expressions *)
-let bind e f = (); fun env rdefs goal info ->
- let a = e env rdefs goal info in
- let r = f a in
- r env rdefs goal info
-
let enter f = (); fun env rdefs gl info ->
let sigma = !rdefs in
f env sigma (Evd.evar_concl info) gl