]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/text-stream.cc
patch::: 1.3.136.jcn3
[lilypond.git] / flower / text-stream.cc
index 446c44a01917bccf55f1ec6889791f6ec92d64b3..e6a1202a14769970432b83edced5768433eba07b 100644 (file)
@@ -4,7 +4,7 @@
 
 Text_stream::Text_stream (String fn)
 {
-  ios::sync_with_stdio();
+  ios::sync_with_stdio ();
   if (fn == "")
     {
       name = _ ("<stdin>");
@@ -30,7 +30,7 @@ Text_stream::Text_stream (String fn)
 void
 Text_stream::message (String s)
 {
-  cerr << '\n'<<get_name() << ": " << line ()<<": "<<s<<endl;
+  cerr << '\n'<<get_name () << ": " << line ()<<": "<<s<<endl;
 }
 
 bool
@@ -42,9 +42,9 @@ Text_stream::eof_b ()
       feof (f);
 }
 
-Text_stream::~Text_stream()
+Text_stream::~Text_stream ()
 {
-    if (!eof_b()) 
+    if (!eof_b ()) 
       cerr <<__FUNCTION__<< ": closing unended file";
     
     fclose (f);