Skip to content

Commit

Permalink
Merge PR #13208: Support "Solve Obligations of <ident>"
Browse files Browse the repository at this point in the history
Reviewed-by: SkySkimmer
  • Loading branch information
coqbot-app[bot] committed Oct 19, 2020
2 parents 6ac6f43 + 2b79914 commit 48319ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/ltac/g_obligations.mlg
Expand Up @@ -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" ] ->
Expand Down

0 comments on commit 48319ad

Please sign in to comment.