aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Program
diff options
context:
space:
mode:
authorGravatar msozeau <msozeau@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-02-01 17:38:05 +0000
committerGravatar msozeau <msozeau@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-02-01 17:38:05 +0000
commit9ef0dfaf7c2aa0030b194ac040b071b4ce275fee (patch)
tree070d33b6e492d4234224600d031e229936889107 /theories/Program
parent7d52b2b92177f45c23f820133f1a910d1c7a48f3 (diff)
Fix unblocking code in dependent destruction due to zeta being used in unfold now.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14964 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Program')
-rw-r--r--theories/Program/Equality.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Program/Equality.v b/theories/Program/Equality.v
index d9d0073be..d408845e7 100644
--- a/theories/Program/Equality.v
+++ b/theories/Program/Equality.v
@@ -389,7 +389,7 @@ Ltac unblock_dep_elim :=
match goal with
| |- block ?T =>
match T with context [ block _ ] =>
- unfold block at 1 ; intros ; unblock_goal
+ change T ; intros ; unblock_goal
end
| _ => unblock_goal
end.