diff options
| author | Arnaud Spiwack | 2014-10-22 13:42:36 +0200 |
|---|---|---|
| committer | Arnaud Spiwack | 2014-10-22 13:44:57 +0200 |
| commit | c2bdd1d3145556423621223694bd9fb23fe86a64 (patch) | |
| tree | a1bcd4929622e5e2a7ea5538ed668d6766cf06ea /proofs | |
| parent | 0d474b1d6e8c630d60f82fa5cd98885199eb8a7a (diff) | |
Oversight in ce260a0db279ce09dda70e079ae3c35b49f05ec4 (Proper scoping of future goals).
Fixes #3757. Thanks to Hugo for helping pinpoint the issue.
Diffstat (limited to 'proofs')
| -rw-r--r-- | proofs/proofview.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/proofview.ml b/proofs/proofview.ml index 5f2a5b7865..92308d2111 100644 --- a/proofs/proofview.ml +++ b/proofs/proofview.ml @@ -935,7 +935,7 @@ struct (** Select the goals *) let comb = undefined sigma (CList.rev evs) in let sigma = CList.fold_left mark_as_goal sigma comb in - Pv.set { solution = Evd.reset_future_goals sigma; comb; } + Pv.set { solution = sigma; comb; } end (** Useful definitions *) |
