diff options
| author | Maxime Dénès | 2017-10-03 11:18:50 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-10-03 11:18:50 +0200 |
| commit | a385b201b4fc12740ad9fecb117e218e6b3f7767 (patch) | |
| tree | db2c2df53cb2b42dd6a41e1fbbe3b06aebe2f573 /plugins | |
| parent | b9740771e8113cb9e607793887be7a12587d0326 (diff) | |
| parent | 848bc5b5fc366ab5869a2836c5ad83ab4d0f2842 (diff) | |
Merge PR #667: [vernac] Remove `Qed exporting` syntax.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/funind/recdef.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/funind/recdef.ml b/plugins/funind/recdef.ml index d43fd78f3f..7b63366e8a 100644 --- a/plugins/funind/recdef.ml +++ b/plugins/funind/recdef.ml @@ -1288,8 +1288,8 @@ let build_new_goal_type () = let is_opaque_constant c = let cb = Global.lookup_constant c in match cb.Declarations.const_body with - | Declarations.OpaqueDef _ -> Vernacexpr.Opaque None - | Declarations.Undef _ -> Vernacexpr.Opaque None + | Declarations.OpaqueDef _ -> Vernacexpr.Opaque + | Declarations.Undef _ -> Vernacexpr.Opaque | Declarations.Def _ -> Vernacexpr.Transparent let open_new_goal build_proof sigma using_lemmas ref_ goal_name (gls_type,decompose_and_tac,nb_goal) = |
