aboutsummaryrefslogtreecommitdiff
path: root/vernac/comAssumption.ml
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-07-02 15:07:39 +0200
committerGaëtan Gilbert2020-07-02 15:07:39 +0200
commitfd4bc8cefc7ae2724d9c386ecfeda2e2feccd98c (patch)
tree433a0a91feca9915d26deecae560057795f46779 /vernac/comAssumption.ml
parenta1835c755f07b2199d122632360a5d236cd9984e (diff)
Fix Context with nonmaximplicit.
Fix #12551
Diffstat (limited to 'vernac/comAssumption.ml')
-rw-r--r--vernac/comAssumption.ml11
1 files changed, 7 insertions, 4 deletions
diff --git a/vernac/comAssumption.ml b/vernac/comAssumption.ml
index d8475126ca..401ba0fba4 100644
--- a/vernac/comAssumption.ml
+++ b/vernac/comAssumption.ml
@@ -268,11 +268,14 @@ let context ~poly l =
in
let b = Option.map (EConstr.to_constr sigma) b in
let t = EConstr.to_constr sigma t in
- let test x = match x.CAst.v with
- | Some (Name id',_) -> Id.equal name id'
- | _ -> false
+ let impl = let open Glob_term in
+ let search x = match x.CAst.v with
+ | Some (Name id',max) when Id.equal name id' ->
+ Some (if max then MaxImplicit else NonMaxImplicit)
+ | _ -> None
+ in
+ try CList.find_map search impls with Not_found -> Explicit
in
- let impl = Glob_term.(if List.exists test impls then MaxImplicit else Explicit) in (* ??? *)
name,b,t,impl)
ctx
in