diff options
| author | coqbot-app[bot] | 2020-10-19 12:07:37 +0000 |
|---|---|---|
| committer | GitHub | 2020-10-19 12:07:37 +0000 |
| commit | 48319ad16a7bff94c3bcfabb37181daa55b568c4 (patch) | |
| tree | 2b66cae3e3062cbd5773e51ea669aa84ac6fe40a /plugins | |
| parent | 6ac6f430b75b74a7361f03be35bce670cb380d03 (diff) | |
| parent | 2b799142f66f5f8a55b2c3bb3c954d2858285fee (diff) | |
Merge PR #13208: Support "Solve Obligations of <ident>"
Reviewed-by: SkySkimmer
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/ltac/g_obligations.mlg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/ltac/g_obligations.mlg b/plugins/ltac/g_obligations.mlg index fc24475a62..6bf330c830 100644 --- a/plugins/ltac/g_obligations.mlg +++ b/plugins/ltac/g_obligations.mlg @@ -111,6 +111,8 @@ END VERNAC COMMAND EXTEND Solve_Obligations CLASSIFIED AS SIDEFF STATE program | [ "Solve" "Obligations" "of" ident(name) "with" tactic(t) ] -> { try_solve_obligations (Some name) (Some (Tacinterp.interp t)) } +| [ "Solve" "Obligations" "of" ident(name) ] -> + { try_solve_obligations (Some name) None } | [ "Solve" "Obligations" "with" tactic(t) ] -> { try_solve_obligations None (Some (Tacinterp.interp t)) } | [ "Solve" "Obligations" ] -> |
