aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/g_tactic.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/g_tactic.ml4')
-rw-r--r--parsing/g_tactic.ml46
1 files changed, 2 insertions, 4 deletions
diff --git a/parsing/g_tactic.ml4 b/parsing/g_tactic.ml4
index a97b73da7..77461213b 100644
--- a/parsing/g_tactic.ml4
+++ b/parsing/g_tactic.ml4
@@ -626,11 +626,9 @@ GEXTEND Gram
| IDENT "revert"; l = LIST1 id_or_meta -> TacRevert l
(* Constructors *)
- | IDENT "split"; bl = with_bindings -> TacSplit (false,false,[bl])
- | IDENT "esplit"; bl = with_bindings -> TacSplit (true,false,[bl])
- | "exists"; bll = opt_bindings -> TacSplit (false,true,bll)
+ | "exists"; bll = opt_bindings -> TacSplit (false,bll)
| IDENT "eexists"; bll = opt_bindings ->
- TacSplit (true,true,bll)
+ TacSplit (true,bll)
| IDENT "constructor"; n = nat_or_var; l = with_bindings ->
TacConstructor (false,n,l)
| IDENT "econstructor"; n = nat_or_var; l = with_bindings ->