aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/evd.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2015-10-14 14:38:22 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2015-10-14 15:55:06 +0200
commit4b8155591be6e20505ee25f7199edcf44a638c7e (patch)
tree245a13ee267a13bc5d2b28d0b984241ea97b5550 /pretyping/evd.ml
parent0f74b3df6e64dc069e53c4afcd6f46129b211d09 (diff)
Fixing evarmap implementation.
Diffstat (limited to 'pretyping/evd.ml')
-rw-r--r--pretyping/evd.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pretyping/evd.ml b/pretyping/evd.ml
index 3d912ca4c..1107c2951 100644
--- a/pretyping/evd.ml
+++ b/pretyping/evd.ml
@@ -750,7 +750,7 @@ let cmap f evd =
{ evd with
metas = Metamap.map (map_clb f) evd.metas;
defn_evars = EvMap.map (map_evar_info f) evd.defn_evars;
- undf_evars = EvMap.map (map_evar_info f) evd.defn_evars
+ undf_evars = EvMap.map (map_evar_info f) evd.undf_evars
}
(* spiwack: deprecated *)