]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-signature-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / time-signature-engraver.cc
index 5cf3ebdc61d64c81954d72c90ad10acc54f6b48e..ec4ff28efc58ea7e8bc2dcb216b7d21b233fc08a 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "engraver-group.hh"
@@ -62,8 +62,8 @@ Time_signature_engraver::process_music ()
            OTOH, Tristan Keuris writes 8/20 in his Intermezzi.
          */
          warning (_f ("strange time signature found: %d/%d",
-                      den,
-                      int (scm_to_int (scm_car (fr)))));
+                      int (scm_to_int (scm_car (fr))),
+                      den));
        }
 
       time_signature_ = make_item ("TimeSignature", SCM_EOL);
@@ -86,13 +86,17 @@ Time_signature_engraver::stop_translation_timestep ()
 #include "translator.icc"
 
 ADD_TRANSLATOR (Time_signature_engraver,
-               /* doc */ "Create a @ref{TimeSignature} whenever @code{timeSignatureFraction} changes",
+               /* doc */
+               "Create a @ref{TimeSignature} whenever"
+               " @code{timeSignatureFraction} changes.",
+
                /* create */
                "TimeSignature ",
                
                /* read */
                "implicitTimeSignatureVisibility "
-               "timeSignatureFraction "
+               "timeSignatureFraction ",
 
-               ,
-               /* write */ "");
+               /* write */
+               ""
+               );