diff options
| author | Pierre-Marie Pédrot | 2014-05-16 17:01:42 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2014-05-16 17:14:55 +0200 |
| commit | e321cfd21e28161923b84d943cb15c6d775b0d9e (patch) | |
| tree | f9acbdf0bf8c7ba8cf12b7282c6af700d8d7408f /parsing | |
| parent | c2f78ed4fba9fa027fdf2051f214e1c5b4fe670e (diff) | |
Moving argument-free tactics out of the AST into a dedicated
"coretactics.ml4" file.
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 65e046fb86..d1620ca8a7 100644 --- a/parsing/g_tactic.ml4 +++ b/parsing/g_tactic.ml4 @@ -532,7 +532,6 @@ GEXTEND Gram | IDENT "intro"; id = ident -> TacIntroMove (Some id, MoveLast) | IDENT "intro" -> TacIntroMove (None, MoveLast) - | IDENT "assumption" -> TacAssumption | IDENT "exact"; c = constr -> TacExact c | IDENT "exact_no_check"; c = constr -> TacExactNoCheck c | IDENT "vm_cast_no_check"; c = constr -> TacVmCastNoCheck c @@ -658,7 +657,6 @@ GEXTEND Gram | IDENT "econstructor"; t = OPT tactic -> TacAnyConstructor (true,t) (* Equivalence relations *) - | IDENT "reflexivity" -> TacReflexivity | IDENT "symmetry"; cl = clause_dft_concl -> TacSymmetry cl | IDENT "transitivity"; c = constr -> TacTransitivity (Some c) | IDENT "etransitivity" -> TacTransitivity None |
