diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2017-07-18 11:26:08 +0200 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2017-07-26 15:23:18 +0200 |
commit | 7edf54baf92f219e4a5307c4cb2563b0e7bda070 (patch) | |
tree | c8864d54b9558387e8b6bb2e6b12440f63d1ff8e /plugins | |
parent | a960c4db9ae93a6445f9db620f96f62b397ba8b5 (diff) |
Removing default evar-normalization for ARGUMENT EXTEND.
This fixes bug 5650: evar (x : Prop) should not be slow.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ltac/tacinterp.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/tacinterp.ml b/plugins/ltac/tacinterp.ml index 60a8f75ec..d3e625e73 100644 --- a/plugins/ltac/tacinterp.ml +++ b/plugins/ltac/tacinterp.ml @@ -2000,7 +2000,7 @@ let lift f = (); fun ist x -> Ftactic.enter begin fun gl -> Ftactic.return (f ist env sigma x) end -let lifts f = (); fun ist x -> Ftactic.nf_enter begin fun gl -> +let lifts f = (); fun ist x -> Ftactic.enter begin fun gl -> let env = Proofview.Goal.env gl in let sigma = Proofview.Goal.sigma gl in let (sigma, v) = f ist env sigma x in |