diff options
| author | Pierre-Marie Pédrot | 2016-02-29 10:54:08 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-02-29 10:55:38 +0100 |
| commit | bda8b2e8f90235ca875422f211cb781068b20b3c (patch) | |
| tree | 223ea774824958259dce4289c5ecbee984bc6afc /parsing | |
| parent | 48327426b59144f1a7181092068077c5a6df7c60 (diff) | |
Moving the "cofix" tactic to TACTIC EXTEND.
Diffstat (limited to 'parsing')
| -rw-r--r-- | parsing/g_tactic.ml4 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/parsing/g_tactic.ml4 b/parsing/g_tactic.ml4 index 497819b327..6c3918be3a 100644 --- a/parsing/g_tactic.ml4 +++ b/parsing/g_tactic.ml4 @@ -557,8 +557,6 @@ GEXTEND Gram | IDENT "ecase"; icl = induction_clause_list -> TacAtom (!@loc, mkTacCase true icl) | "fix"; id = ident; n = natural; "with"; fd = LIST1 fixdecl -> TacAtom (!@loc, TacMutualFix (id,n,List.map mk_fix_tac fd)) - | "cofix" -> TacAtom (!@loc, TacCofix None) - | "cofix"; id = ident -> TacAtom (!@loc, TacCofix (Some id)) | "cofix"; id = ident; "with"; fd = LIST1 cofixdecl -> TacAtom (!@loc, TacMutualCofix (id,List.map mk_cofix_tac fd)) |
