From d122799af45e81608a40063568e9f4b6d6deec33 Mon Sep 17 00:00:00 2001 From: pboutill Date: Thu, 1 Sep 2011 09:51:26 +0000 Subject: safe_prerr_endline in Minilib git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14442 85f007b7-540e-0410-9357-904b9bb8a0f7 --- ide/coq.ml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ide/coq.ml') diff --git a/ide/coq.ml b/ide/coq.ml index 6e8190722..dbb0d8ac3 100644 --- a/ide/coq.ml +++ b/ide/coq.ml @@ -73,11 +73,11 @@ let check_connection args = | _ -> raise (Coqtop_output lines) with | End_of_file -> - safe_prerr_endline "Cannot start connection with coqtop"; + Minilib.safe_prerr_endline "Cannot start connection with coqtop"; exit 1 | Coqtop_output lines -> - safe_prerr_endline "Connection with coqtop failed:"; - List.iter safe_prerr_endline lines; + Minilib.safe_prerr_endline "Connection with coqtop failed:"; + List.iter Minilib.safe_prerr_endline lines; exit 1 (** It is tempting to merge the following function with the previous one, @@ -98,11 +98,11 @@ let check_coqlib args = | _ -> raise (Coqtop_output lines) with | End_of_file -> - safe_prerr_endline "Cannot start connection with coqtop"; + Minilib.safe_prerr_endline "Cannot start connection with coqtop"; exit 1 | Coqtop_output lines -> - safe_prerr_endline "Connection with coqtop failed:"; - List.iter safe_prerr_endline lines; + Minilib.safe_prerr_endline "Connection with coqtop failed:"; + List.iter Minilib.safe_prerr_endline lines; exit 1 -- cgit v1.2.3