diff options
| author | Jim Fehrle | 2020-10-15 18:57:14 -0700 |
|---|---|---|
| committer | Jim Fehrle | 2020-10-15 18:57:14 -0700 |
| commit | 2b799142f66f5f8a55b2c3bb3c954d2858285fee (patch) | |
| tree | 27204cb447f5aca1655f2b2774664bc02e89eaca | |
| parent | 411025844a4c005ce03d77c6c640807c28269d4a (diff) | |
Support "Solve Obligations of <ident>" option
| -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" ] -> |
