aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tactics/tactics.ml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index b21ac1825b..98a732287e 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -1680,9 +1680,9 @@ let tclABSTRACT name_op tac gls =
let dyn_tclABSTRACT =
hide_tactic "ABSTRACT"
- (function
- | [Tacexp tac] ->
- tclABSTRACT None (Tacinterp.interp tac)
- | [Identifier s; Tacexp tac] ->
- tclABSTRACT (Some s) (Tacinterp.interp tac)
- | _ -> invalid_arg "tclABSTRACT")
+ (function
+ | [Tac tac] ->
+ tclABSTRACT None tac
+ | [Identifier s; Tac tac] ->
+ tclABSTRACT (Some s) tac
+ | _ -> invalid_arg "tclABSTRACT")