diff options
| author | Emilio Jesus Gallego Arias | 2019-06-06 06:01:14 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-06-24 20:54:43 +0200 |
| commit | 70a11c78e790d7f2f4175d1002e08f79d3ed8486 (patch) | |
| tree | fc184b3b7d59b20e6e5f0c1a82a88c1b15fc45bb /vernac | |
| parent | fd2d2a8178d78e441fb3191cf112ed517dc791af (diff) | |
[proof] More uniformity in proof start labels.
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/lemmas.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vernac/lemmas.ml b/vernac/lemmas.ml index d323493c11..744cdbfb5f 100644 --- a/vernac/lemmas.ml +++ b/vernac/lemmas.ml @@ -344,13 +344,13 @@ let start_lemma ~name ~poly ~kind ?(info=Info.make ()) sigma c = let goals = [ Global.env_of_context sign , c ] in - let proof = Proof_global.start_proof sigma name udecl ~poly kind goals in + let proof = Proof_global.start_proof sigma ~name ~udecl ~poly ~kind goals in { proof ; info } let start_dependent_lemma ~name ~poly ~kind ?(udecl=UState.default_univ_decl) ?(info=Info.make ()) telescope = - let proof = Proof_global.start_dependent_proof name udecl ~poly kind telescope in + let proof = Proof_global.start_dependent_proof ~name ~udecl ~poly ~kind telescope in { proof; info } let rec_tac_initializer finite guard thms snl = |
