mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/utils/cdk/printf2.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/utils/cdk/printf2.ml
Date: Wed, 06 Jul 2005 20:25:53 -0400

Index: mldonkey/src/utils/cdk/printf2.ml
diff -u mldonkey/src/utils/cdk/printf2.ml:1.7 
mldonkey/src/utils/cdk/printf2.ml:1.8
--- mldonkey/src/utils/cdk/printf2.ml:1.7       Mon Nov  1 11:23:02 2004
+++ mldonkey/src/utils/cdk/printf2.ml   Thu Jul  7 00:25:46 2005
@@ -77,7 +77,7 @@
       in fill_format start (List.rev widths)
 
 (* Decode a %format and act on it.
-   [fmt] is the printf format style, and [pos] points to a [%] character.  
+   [fmt] is the printf format style, and [pos] points to a [%] character.
    After consuming the appropriate number of arguments and formatting
    them, one of the three continuations is called:
    [cont_s] for outputting a string (args: string, next pos)
@@ -184,17 +184,16 @@
   and cont_t printer i =
     Buffer.add_string dest (printer ()); doprn i
   in doprn 0
-  
-let lprintf_handler = ref (fun s -> 
-      Printf.printf "Message [%s] discared\n" s;
-      print_newline ();
+
+let lprintf_handler = ref (fun s ->
+      Printf.printf "Message [%s] discarded\n" s;
   )
-  
-let lprintf fmt = 
+
+let lprintf fmt =
   cprintf (fun s -> try !lprintf_handler s with _ -> ())
   (fmt : ('a,unit, unit) format )
-  
-let lprintf_nl fmt = 
+
+let lprintf_nl fmt =
   cprintf (fun s -> try !lprintf_handler (s^"\n") with _ -> ())
   (fmt : ('a,unit, unit) format )
 
@@ -202,19 +201,19 @@
 let lprint_char c = lprintf "%c" c
 let lprint_int c = lprintf "%d" c
 let lprint_string c = lprintf "%s" c
-  
+
 let set_lprintf_handler f =
   lprintf_handler := f
-  
+
 let lprintf_max_size = ref 100
 let lprintf_size = ref 0
 let lprintf_fifo = Fifo.create ()
 let lprintf_to_stdout = ref true
-  
+
 let lprintf_output = ref (Some stderr)
-  
+
 let _ =
-  set_lprintf_handler (fun s ->       
+  set_lprintf_handler (fun s ->
       match !lprintf_output with
         Some out when !lprintf_to_stdout ->
           Printf.fprintf out "%s" s; flush out
@@ -230,7 +229,7 @@
   match !lprintf_output with
     Some oc when oc == Pervasives.stdout -> lprintf_output := None
   | _ -> ()
-  
+
 let close_log () =
   lprintf_to_stdout := false;
   match !lprintf_output with
@@ -240,7 +239,6 @@
         close_out oc;
       lprintf_output := None
 
-        
 let log_to_file oc =
   close_log ();
   lprintf_output := Some oc;
@@ -254,6 +252,6 @@
       Buffer.add_string buf s
     done
   with _ -> ()
-      
+
 let set_logging b =
   lprintf_to_stdout := b




reply via email to

[Prev in Thread] Current Thread [Next in Thread]