diff options
author | ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-05-30 16:51:34 +0000 |
---|---|---|
committer | ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-05-30 16:51:34 +0000 |
commit | 4d58a4f25a796d1c5d39f2be8648696cdfd46dba (patch) | |
tree | 3b2587eb464393caf23a50283c10f80532ace22f /plugins/rtauto | |
parent | 24879dc0e59856e297b0172d00d67df67fbb0184 (diff) |
Getting rid of Pp.msg
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15400 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'plugins/rtauto')
-rw-r--r-- | plugins/rtauto/proof_search.ml | 2 | ||||
-rw-r--r-- | plugins/rtauto/proof_search.mli | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rtauto/proof_search.ml b/plugins/rtauto/proof_search.ml index d772279f1..a1ab6cd30 100644 --- a/plugins/rtauto/proof_search.ml +++ b/plugins/rtauto/proof_search.ml @@ -472,7 +472,7 @@ and pp_atom= function | Atom n -> int n | f -> str "(" ++ hv 2 (pp_form f) ++ str ")" -let pr_form f = msg (pp_form f) +let pr_form f = pp_form f let pp_intmap map = let pp=ref (str "") in diff --git a/plugins/rtauto/proof_search.mli b/plugins/rtauto/proof_search.mli index 275e94cde..738f3f230 100644 --- a/plugins/rtauto/proof_search.mli +++ b/plugins/rtauto/proof_search.mli @@ -40,7 +40,7 @@ val success: state -> bool val pp: state -> Pp.std_ppcmds -val pr_form : form -> unit +val pr_form : form -> Pp.std_ppcmds val reset_info : unit -> unit |