diff options
| author | Emilio Jesus Gallego Arias | 2021-01-26 12:10:11 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2021-01-26 12:13:32 +0100 |
| commit | 6e41dd8c6ba0279b9c882c02053c4d34eb251971 (patch) | |
| tree | 2d932700668f6c758fd821a3f386a1354cbdaf83 /plugins | |
| parent | 14051337936db1f56dc052a6e54e5b606552141b (diff) | |
[vernac] Check that no proofs do remain open at section/module closing time
Fixes #13755 .
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/ltac/g_obligations.mlg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/ltac/g_obligations.mlg b/plugins/ltac/g_obligations.mlg index 6bf330c830..e7902d06eb 100644 --- a/plugins/ltac/g_obligations.mlg +++ b/plugins/ltac/g_obligations.mlg @@ -151,13 +151,13 @@ VERNAC COMMAND EXTEND Show_Solver CLASSIFIED AS QUERY END VERNAC COMMAND EXTEND Show_Obligations CLASSIFIED AS QUERY STATE read_program -| [ "Obligations" "of" ident(name) ] -> { show_obligations (Some name) } -| [ "Obligations" ] -> { show_obligations None } +| [ "Obligations" "of" ident(name) ] -> { fun ~stack:_ -> show_obligations (Some name) } +| [ "Obligations" ] -> { fun ~stack:_ -> show_obligations None } END VERNAC COMMAND EXTEND Show_Preterm CLASSIFIED AS QUERY STATE read_program -| [ "Preterm" "of" ident(name) ] -> { fun ~pm -> Feedback.msg_notice (show_term ~pm (Some name)) } -| [ "Preterm" ] -> { fun ~pm -> Feedback.msg_notice (show_term ~pm None) } +| [ "Preterm" "of" ident(name) ] -> { fun ~stack:_ ~pm -> Feedback.msg_notice (show_term ~pm (Some name)) } +| [ "Preterm" ] -> { fun ~stack:_ ~pm -> Feedback.msg_notice (show_term ~pm None) } END { |
