X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fcic_transformations%2FtacticAstPp.ml;h=5c96b64d3fa602a4a71c0438397b33183f8ecfff;hb=5f57966efd85fb295701f06fd0488e9fe1bbb99f;hp=9a544234d15a56600c75ca4ada90d0f25c001d61;hpb=9e2b452ac3b4b5ba72834fd6e51e104e4faa032c;p=helm.git diff --git a/helm/ocaml/cic_transformations/tacticAstPp.ml b/helm/ocaml/cic_transformations/tacticAstPp.ml index 9a544234d..5c96b64d3 100644 --- a/helm/ocaml/cic_transformations/tacticAstPp.ml +++ b/helm/ocaml/cic_transformations/tacticAstPp.ml @@ -86,14 +86,14 @@ let pp_flavour = function | `Theorem -> "Theorem" let pp_command = function - | Abort -> "Abort." - | Check term -> sprintf "Check %s." (CicAstPp.pp_term term) - | Proof -> "Proof." + | Abort -> "Abort" + | Check term -> sprintf "Check %s" (CicAstPp.pp_term term) + | Proof -> "Proof" | Qed name -> - (match name with None -> "Qed." | Some name -> sprintf "Save %s." name) - | Quit -> "Quit." + (match name with None -> "Qed" | Some name -> sprintf "Save %s" name) + | Quit -> "Quit" | Theorem (flavour, name, typ, body) -> - sprintf "%s %s: %s %s." + sprintf "%s %s: %s %s" (pp_flavour flavour) (match name with None -> "" | Some name -> name) (CicAstPp.pp_term typ)