aboutsummaryrefslogtreecommitdiff
path: root/printing
diff options
context:
space:
mode:
authorletouzey2012-10-06 10:08:32 +0000
committerletouzey2012-10-06 10:08:32 +0000
commit1f05de5d4e19867c3425c39999a1f58e12b57657 (patch)
tree8efa17000b77b1d39c07bbfeb9da7153181f70f6 /printing
parenta0057a6657f5615c3d3448fae10b26a968d30fe1 (diff)
Clean-up : removal of Proof_type.tactic_expr
This instance of gen_tactic_expr was used only to decorate tactics via Refiner.abstract_tactics and alii, but these expressions are now ignored by the new proof-engine (no "info"...). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15865 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'printing')
-rw-r--r--printing/pptactic.ml15
-rw-r--r--printing/pptactic.mli2
2 files changed, 0 insertions, 17 deletions
diff --git a/printing/pptactic.ml b/printing/pptactic.ml
index b790c4ea68..055f08d93e 100644
--- a/printing/pptactic.ml
+++ b/printing/pptactic.ml
@@ -1035,23 +1035,8 @@ and pr_glob_tactic_level env n (t:glob_tactic_expr) =
let pr_constr_or_lconstr_pattern b =
if b then pr_lconstr_pattern else pr_constr_pattern
-let typed_printers =
- (pr_glob_tactic_level,
- pr_constr_env,
- pr_lconstr_env,
- pr_constr_or_lconstr_pattern,
- pr_evaluable_reference_env,
- pr_inductive,
- pr_ltac_constant,
- pr_id,
- pr_extend,
- strip_prod_binders_constr)
-
-let pr_tactic_level env = fst (make_pr_tac typed_printers env)
-
let pr_raw_tactic env = pr_raw_tactic_level env ltop
let pr_glob_tactic env = pr_glob_tactic_level env ltop
-let pr_tactic env = pr_tactic_level env ltop
let _ = Tactic_debug.set_tactic_printer
(fun x -> pr_glob_tactic (Global.env()) x)
diff --git a/printing/pptactic.mli b/printing/pptactic.mli
index 61acffd081..8973bd6bc3 100644
--- a/printing/pptactic.mli
+++ b/printing/pptactic.mli
@@ -92,8 +92,6 @@ val pr_raw_tactic_level : env -> tolerability -> raw_tactic_expr -> std_ppcmds
val pr_glob_tactic : env -> glob_tactic_expr -> std_ppcmds
-val pr_tactic : env -> Proof_type.tactic_expr -> std_ppcmds
-
val pr_hintbases : string list option -> std_ppcmds
val pr_auto_using : ('constr -> std_ppcmds) -> 'constr list -> std_ppcmds