]> git.donarmstrong.com Git - lilypond.git/commitdiff
* lily/score.cc (ly_run_translator), lily/paper-def.cc
authorWerner Lemberg <wl@gnu.org>
Sun, 21 Mar 2004 19:10:44 +0000 (19:10 +0000)
committerWerner Lemberg <wl@gnu.org>
Sun, 21 Mar 2004 19:10:44 +0000 (19:10 +0000)
(Paper_def::get_paper_outputter), lily/input-file-results.cc
(Input_file_results::Input_file_results), lily/my-lily-parser.cc
(My_lily_parser::parse_file): Improve formatting progress indication
sent to stdout.

ChangeLog
lily/input-file-results.cc
lily/my-lily-parser.cc
lily/paper-def.cc
lily/score.cc

index 48a27dedf314fce5395d7d07487b8c6104b7a27f..a0c3cc5f385902f94542ff070f9abe3782069b6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-03-21  Werner Lemberg  <wl@gnu.org>
+
+       * lily/score.cc (ly_run_translator), lily/paper-def.cc
+       (Paper_def::get_paper_outputter), lily/input-file-results.cc
+       (Input_file_results::Input_file_results), lily/my-lily-parser.cc
+       (My_lily_parser::parse_file): Improve formatting progress indication
+       sent to stdout.
+
 2004-03-21  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
        * scripts/lilypond-book.py (do_file): reinstate --filter support.
index 8c6cbab397ddfc948e5a3710e1907c3b1e538097..0da68c899dffddd3672fcc5d8f4353d34728d92d 100644 (file)
@@ -139,7 +139,7 @@ Input_file_results::Input_file_results (String init, String in_file, String out_
   sources_.set_path (&global_path);
   
 
-  progress_indication (_f ("Now processing: `%s'", in_file.to_str0 ()));
+  progress_indication (_f ("Now processing `%s'", in_file.to_str0 ()));
   progress_indication ("\n");
 
   My_lily_parser parser (this);
index f000e678be1d5e317964775e870f37f6c812a2e3..c87b1416ef3228f278a483d91ec62764120856e6 100644 (file)
@@ -43,6 +43,7 @@ My_lily_parser::parse_file (String init, String in_file, String out_file)
   lexer_->main_input_name_ = in_file;
 
   progress_indication (_ ("Parsing..."));
+  progress_indication ("\n");
 
   set_yydebug (0);
   lexer_->new_input (init, &input_file_->sources_);
@@ -50,8 +51,6 @@ My_lily_parser::parse_file (String init, String in_file, String out_file)
   /* Read .ly IN_FILE, lex, parse, write \score blocks from IN_FILE to
      OUT_FILE (unless IN_FILE redefines output file name).  */
   do_yyparse ();
-
-  progress_indication ("\n");
   
   if (!define_spots_.is_empty ())
     {
index fec208899a676bb6ae415848de2a559550dba678..83fb510504da37a281abd5f64f0959f747d3060f 100644 (file)
@@ -72,6 +72,7 @@ Paper_def::get_paper_outputter (String outname)  const
 {
   progress_indication (_f ("paper output to `%s'...",
                           outname == "-" ? String ("<stdout>") : outname));
+  progress_indication("\n");
 
   global_input_file->target_strings_.push (outname);
   Paper_outputter * po = new Paper_outputter (outname);
index 71afe0f2aa44b3744ba62a247ec278f6a8624763..5e15b722e5484daaf2075b71ae8d67501fa3d0ad 100644 (file)
@@ -122,7 +122,7 @@ LY_DEFINE (ly_run_translator, "ly:run-translator",
       programming_error ("no toplevel translator");
       return SCM_BOOL_F;
     }
-  progress_indication (_ ("Interpreting music..."));
+  progress_indication (_ ("Interpreting music... "));
   
   SCM protected_iter = Music_iterator::get_static_get_iterator (music);
   Music_iterator * iter = unsmob_iterator (protected_iter);