aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorEnrico Tassi2015-03-22 13:15:20 +0100
committerEnrico Tassi2015-03-22 13:15:20 +0100
commitb9d625513256e854e0b3b831a965adeeba9ccb64 (patch)
treed40334eea43e3f9db95ec481e6c8e897b7a91f7d /tactics
parent5e4101a2813f1b98478d52d2cbb763db5d8c76c7 (diff)
Aliasing give_up with admit
Diffstat (limited to 'tactics')
-rw-r--r--tactics/coretactics.ml46
1 files changed, 6 insertions, 0 deletions
diff --git a/tactics/coretactics.ml4 b/tactics/coretactics.ml4
index 6d3dc461ec..e909a14c9e 100644
--- a/tactics/coretactics.ml4
+++ b/tactics/coretactics.ml4
@@ -196,6 +196,12 @@ TACTIC EXTEND simple_destruct
[ "simple" "destruct" quantified_hypothesis(h) ] -> [ Tactics.simple_destruct h ]
END
+(* Admit *)
+
+TACTIC EXTEND admit
+ [ "admit" ] -> [ Proofview.give_up ]
+END
+
(* Table of "pervasives" macros tactics (e.g. auto, simpl, etc.) *)
open Tacexpr