X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2FtacticAstPp.ml;h=86c7185ecf1308d75e1f34707059c1cc77f3fc1f;hb=3ea21b6d721c759876aa53385b421cb1412e11f5;hp=67b5733d2a0644ef7376a6eff154af6810af2942;hpb=ebaf3deffea9ac78a2b8b2a6c128cc24ad8459ef;p=helm.git diff --git a/helm/ocaml/cic_transformations/tacticAstPp.ml b/helm/ocaml/cic_transformations/tacticAstPp.ml index 67b5733d2..86c7185ec 100644 --- a/helm/ocaml/cic_transformations/tacticAstPp.ml +++ b/helm/ocaml/cic_transformations/tacticAstPp.ml @@ -82,8 +82,9 @@ let rec pp_tactic = function | ElimType (_, term) -> "elim type " ^ pp_term_ast term | Exact (_, term) -> "exact " ^ pp_term_ast term | Exists _ -> "exists" - | Fold (_, kind, pattern) -> - sprintf "fold %s %s" (pp_reduction_kind kind) (pp_pattern pattern) + | Fold (_, kind, term, pattern) -> + sprintf "fold %s %s %s" (pp_reduction_kind kind) + (pp_term_ast term) (pp_pattern pattern) | FwdSimpl (_, hyp, idents) -> sprintf "fwd %s%s" hyp (match idents with [] -> "" | idents -> " " ^ pp_idents idents)