diff options
author | Matthieu Sozeau <mattam@mattam.org> | 2017-05-29 11:48:51 +0200 |
---|---|---|
committer | Matthieu Sozeau <mattam@mattam.org> | 2017-05-29 11:58:48 +0200 |
commit | fd7f056b155b2ebaafa3251a3c136117ebefc3e3 (patch) | |
tree | 46ff14eb398806485d148757a2f34e1889ef7aaf /vernac | |
parent | 4c1260299b707bd27765b0ab365092046b134a69 (diff) |
Cleanup: removal of constr_of_global.
Constrintern.pf_global returns a global_reference, not a constr,
adapt plugins accordingly, properly registering universes where
necessary.
Diffstat (limited to 'vernac')
-rw-r--r-- | vernac/vernacentries.ml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vernac/vernacentries.ml b/vernac/vernacentries.ml index 6c1d64cfe..036173c6d 100644 --- a/vernac/vernacentries.ml +++ b/vernac/vernacentries.ml @@ -1765,12 +1765,11 @@ let vernac_locate = let open Feedback in function let vernac_register id r = if Pfedit.refining () then user_err Pp.(str "Cannot register a primitive while in proof editing mode."); - let t = (Constrintern.global_reference (snd id)) in - if not (isConst t) then + let kn = Constrintern.global_reference (snd id) in + if not (isConstRef kn) then user_err Pp.(str "Register inline: a constant is expected"); - let kn = destConst t in match r with - | RegisterInline -> Global.register_inline (Univ.out_punivs kn) + | RegisterInline -> Global.register_inline (destConstRef kn) (********************) (* Proof management *) |