diff options
| author | Maxime Dénès | 2015-09-20 00:06:33 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2015-09-20 00:14:32 +0200 |
| commit | bfd0ee9503cf04b51b2dd40d4ad2a904b07ac323 (patch) | |
| tree | 3cc2e5b414ab0b5a8aa00b2023982dc40ae00ca7 /kernel/mod_subst.ml | |
| parent | 04e9be59051ca60bf61d5142ac14386920876926 (diff) | |
Fix #3948 Anomaly: unknown constant in Print Assumptions
Substitution on bound modules was incorrectly extended without sequential
composition.
Diffstat (limited to 'kernel/mod_subst.ml')
| -rw-r--r-- | kernel/mod_subst.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/mod_subst.ml b/kernel/mod_subst.ml index f7ae30e7af..ba14f65d9e 100644 --- a/kernel/mod_subst.ml +++ b/kernel/mod_subst.ml @@ -122,7 +122,7 @@ let add_kn_delta_resolver kn kn' = let add_mp_delta_resolver mp1 mp2 = Deltamap.add_mp mp1 mp2 -(** Extending a [substitution] *) +(** Extending a [substitution] without sequential composition *) let add_mbid mbid mp resolve s = Umap.add_mbi mbid (mp,resolve) s let add_mp mp1 mp2 resolve s = Umap.add_mp mp1 (mp2,resolve) s |
