From: Claudio Sacerdoti Coen Date: Mon, 4 Jul 2005 14:01:21 +0000 (+0000) Subject: pretty printing of URIs X-Git-Tag: PRE_GETTER_STORAGE~9 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=83def9eb07b5c3c5ddb9e9873677e61b518ec0e2;p=helm.git pretty printing of URIs --- diff --git a/helm/matita/.ocamlinit b/helm/matita/.ocamlinit index ba19e4e2d..f5c30f839 100644 --- a/helm/matita/.ocamlinit +++ b/helm/matita/.ocamlinit @@ -21,9 +21,15 @@ #directory "../ocaml/xmldiff" (* custom printers *) +let fppuri ppf uri = + let s = UriManager.string_of_uri uri in + Format.pp_print_string ppf s +;; + #install_printer CicMetaSubst.fppsubst;; #install_printer CicMetaSubst.fppterm;; #install_printer CicMetaSubst.fppmetasenv;; +#install_printer fppuri;; (* utility functions *) let go = MatitacLib.go;;